{{-- new code end --}}
@foreach($physical_batches as $batch)
| {{ $batch->name }} |
{!! get_batch_timings($batch) !!} |
@if($batch->physical_class_type == 'group')
{{ $batch->number_of_seats }}
@endif
@if(batch_is_full($batch))
SEATS FULL
@endif
|
|
{{ $batch->name }}
TIMINGS
{!! get_batch_timings($batch) !!}
@if($batch->physical_class_type == 'group')
Number of Seats: {{ $batch->number_of_seats }}
@endif
@if(batch_is_full($batch))
SEATS FULL
@endif
@endforeach
{{-- new code start --}}