@extends('web.layouts.front') @section('title') {{ __('Working Hours') }} @endsection @section('content')

{{ __('messages.web_home.working_hours') }}

image

{{ __('messages.web_home.book_an_appointment') }}

{{ __('messages.web_working_hours.opening_hours') }}

@if(count($hospitalSchedules))
    @foreach($hospitalSchedules as $hospitalSchedule)
  • {{$weekDay[$hospitalSchedule->day_of_week]}} {{ $hospitalSchedule->start_time.' - '.$hospitalSchedule->end_time }}
  • @endforeach
@else
{{ __('messages.web_working_hours.no_yet_opening_hours') }}
@endif
@endsection