VTC Student Courses
#
Student Name
Course Name
Created At
@forelse($vtcStudentCourses as $index => $record)
{{ $index + 1 }}
{{ $record->student?->name ?? 'N/A' }}
{{ $record->course?->name ?? 'N/A' }}
{{ $record->created_at ? \Carbon\Carbon::parse($record->created_at)->format('d M Y') : 'N/A' }}
@empty
No records found.
@endforelse