| Batch Name |
{{$content->name??''}} |
| Course |
{{$content->course->name??''}} |
{{--
| Is online |
{{$content->is_online ? 'yes' : 'no'}} |
--}}
| Is Physical |
{{$content->is_physical ? 'yes' : 'no'}} |
@if($content->is_physical)
| Physical Class Type |
{{$content->physical_class_type}} |
@if($content->physical_class_type == 'group')
| Number of Seats |
{{$content->number_of_seats}} |
@endif
@endif
@if(!is_null($content->date_range))
| Date |
{{$content->date_range??''}} |
| From |
{{Carbon\Carbon::parse($content->time_from)->format('g:i A')??''}} |
| To |
{{Carbon\Carbon::parse($content->time_to)->format('g:i A')??''}} |
@else
| Date |
From |
To |
@foreach($content->batch_dates as $batch_date)
| {{$batch_date->date}} |
{{Carbon\Carbon::parse($batch_date->time_from)->format('g:i A')}} |
{{Carbon\Carbon::parse($batch_date->time_to)->format('g:i A')}} |
@endforeach
@endif
@if(count($content->batch_sessions))
| Registered Students |
| Name |
Email |
Phone |
@foreach($content->batch_sessions as $batch_session)
| {{$batch_session->user->name ?? ''}} |
{{$batch_session->user->email ?? ''}} |
{{$batch_session->user->phone ?? ''}} |
@endforeach
|
| Notify students(email) |
|
@endif