@extends('layouts.app') @section('title', $materi->judul) @section('content')
{{-- Header Section --}}
{{-- Back Navigation --}} Kembali {{-- Title --}}

{{ $materi->judul }}

{{-- Meta Info --}}
{{ $materi->mapel->nama }}
{{-- Content Card --}}
{{-- Content with Tailwind Prose --}}
{!! $materi->isi !!}
{{-- Action Section --}}
@if(!$progress || $progress->status !== 'selesai') {{-- Mark as Complete Form --}}

Selesaikan Materi

Tandai materi ini sebagai selesai untuk melanjutkan ke materi berikutnya

@csrf
@else {{-- Completed Badge --}}

Materi Selesai!

Kamu sudah menyelesaikan materi ini

@endif
@endsection