@if ($errors->any())
@endif
@if (session('success'))
@endif
{{-- Create Modal --}}
@include('content.partials.create')
{{-- Table --}}
@if ($contents->count())
# |
មុខវិជ្ជា |
មេរៀន |
ចំនួនថ្ងៃ |
លទ្ធផល |
សកម្មភាព |
@foreach ($contents as $index => $content)
{{ $index + 1 }} |
{{ $content->course->course_name ?? 'N/A' }} |
{{ $content->lesson->title ?? 'N/A' }} |
{{ $content->session }} |
{{ Str::limit($content->expect_result, 50) }} |
|
{{-- Show & Edit Modals --}}
@include('content.partials.edit', ['content' => $content])
{{-- @include('content.partials.show', ['content' => $content]) --}}
@endforeach
@else
មាតិកាមិនទាន់មានទេ។
@endif
@endsection