@foreach ($sbjGroups as $subject)
$loop->first, 'active' => $loop->first]) id="{{ \Str::slug($subject['info']['subject']) . '-' . \Str::slug($subjGroup) }}-tab" role="tabpanel" aria-labelledby="{{ \Str::slug($subject['info']['subject']) . '-' . \Str::slug($subjGroup) }}-btn" tabindex="0">
| {{ __('calendar.time') }} |
{{ __('calendar.type') }} |
{{ __('calendar.total_enrollment') }} |
@if(isPaidSystem()){{ __('calendar.session_fee') }}@endif |
@foreach ($subject['slots'] as $slot)
parseToUTC($slot->start_time)->isPast()])>
|
@if(setting('_lernen.time_format') == '12')
{{ parseToUserTz($slot->start_time)->format('h:i a') }} -
{{ parseToUserTz($slot->end_time)->format('h:i a') }}
@else
{{ parseToUserTz($slot->start_time)->format('H:i') }} -
{{ parseToUserTz($slot->end_time)->format('H:i') }}
@endif
|
$slot->spaces == 1])>
{{ $slot->spaces > 1 ? __('calendar.group') : __('calendar.one') }}
|
@if ($slot->total_booked > 0 && !empty($slot->students))
@foreach ($slot->students as $student)
-
@if (!empty($student->image) && Storage::disk(getStorageDisk())->exists($student->image))
@else
@endif
@endforeach
{{ __('calendar.booked_students', ['count' => $slot->bookings_count]) }}
@else
--
@endif
|
@if (isPaidSystem())
{{ formatAmount($slot->session_fee ?? 0) }}
@endif
@if(\Carbon\Carbon::parse($slot->start_time)->isFuture())
@else
{{ __('calendar.ended') }}
@endif
|
@endforeach
@endforeach