@if ($errors->any())
@endif
@if (session('success'))
@endif
{{-- create --}}
@include('exercise.partials.create')
{{-- create end --}}
@if ($exercise->count())
| # |
មុខវិជ្ជា |
មេរៀន |
លំហាត់ |
រូបភាព |
សកម្មភាព |
@foreach ($exercise as $index => $ex)
| {{ $index + 1 }} |
{{ $ex->course->course_name }} |
{{ $ex->lesson->title ?? 'N/A' }} |
{{ Str::limit($ex->exercise_element, 50) }} |
@foreach ($ex->exerciseImage as $img)
@endforeach
|
|
{{-- update --}}
@include('exercise.partials.edit')
{{-- create end --}}
@endforeach
@else
គ្មានលំហាត់ទេ។
@endif
@endsection