ID |
Category Name |
Start Date |
End Date |
Days |
Instructor |
Actions |
@foreach ($staffScheduleds as $course)
{{ $course->id }} |
{{ $course->academyCategoryProduct->name_en ?? '' }} |
{{ $course->start_date }} |
{{ $course->end_date }} |
@foreach ($course->scheduledSlots->unique('slot_day') as $slot)
{{ $slot->slot_day }}
@endforeach
|
{{ $course->staff->full_name }} |
@if ($course->courseInvoice->isEmpty())
@else
@endif
@if ($course->meeting_url)
@else
@endif
|
@include('dashboard.academics.courses.request_invoice_product_modal')
@endforeach
{{ $staffScheduleds->appends(request()->except('page'))->links('pagination::bootstrap-5') }}