@lang("global.$day")
@if ($working_time->open_24_hours)
@lang('validation.attributes.open_24_hours')
@elseif($working_time->holiday)
@lang('validation.attributes.holiday')
@else
@if ($working_time->shifts[0]->opening_time)
{{ carbon($working_time->shifts[0]->opening_time)->isoFormat('h:mm a') }} - {{ carbon($working_time->shifts[0]->closing_time)->isoFormat('h:mm a') }}
@endif
@if ($working_time->shifts[1]->opening_time)
| {{ carbon($working_time->shifts[1]->opening_time)->isoFormat('h:mm a') }} - {{ carbon($working_time->shifts[1]->closing_time)->isoFormat('h:mm a') }}
@endif
@endif
@endif
@endforeach