@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' }} |
{{ Str::limit($content->lesson->title ?? 'N/A', 10) }} |
{{ $content->session }} |
{{ Str::limit($content->Lesson_content, 10) }} |
{{ Str::limit($content->expect_result, 10) }} |
{{ Str::limit($content->activity, 10) }} |
{{ Str::limit($content->Evaluate, 10) }} |
|
{{-- Show & Edit Modals --}}
@include('content.partials.edit', ['content' => $content])
{{-- @include('content.partials.show', ['content' => $content]) --}}
@endforeach
@else
មាតិកាមិនទាន់មានទេ។
@endif
@endsection