@if (Session::has('success'))
{{-- --}}
{{ Session::get('success') }}
@endif
@if (Session::has('fail'))
{{ Session::get('fail') }}
@endif
Slots List
S.No. | {{--Meeting ID | --}}Tutor | Date | Slot | Status | Booked By | Booked At | Subject | {{--Action | --}}
---|---|---|---|---|---|---|---|---|---|
{{$loop->iteration}} | {{$slot->tutor_name}} | {{ \Carbon\Carbon::parse($slot->date)->format('d/m/Y') }} | {{ \Carbon\Carbon::parse($slot->slot)->format('h:i A') }} | @if ($slot->status == 0)Available | @elseif ($slot->status == 1)Booked | @elseCompleted | @endif{{$slot->student_name}} | {{$slot->booked_at}} | {{$slot->subject}} |
{{-- --}}