{{ __('Courses') }}

{{-- Search filter --}}

{{ __('Courses List') }}

@forelse ($courses as $course) @empty @endforelse
{{ __('SN') }} {{ __('Title') }} {{ __('Category') }} {{ __('Instructor') }} {{ __('Price') }} {{ __('Students') }} {{ __('Created Date') }} {{ __('Update Date') }} {{ __('Status') }} {{ __('Approve') }} {{ __('Actions') }}
{{ $loop->index + 1 }} {{ truncate($course->title) }}
{{ $course->category->translation->name ?? '' }}
{{ @$course->category->translation->name ?? '' }} {{ $course->instructor->name ?? '' }} {{ $course->price }} {{ $course->enrollments_count }} {{ formatDate($course->created_at) }}
{{ formatDate($course->created_at, 'H:i') }}
{{ formatDate($course->updated_at) }}
{{ formatDate($course->updated_at, 'H:i') }}
{{ $courses->links() }}