@extends("layouts.admin.app") @section("page-title") {{__("Dashboard")}} @endSection @section("page-nav-title")

{{__("Time Slot Types")}}

@endsection @section("content") @include("includes.dialog")
@foreach($time_slot_type_details->object_week_days as $details)
{{__('Day')}} : {{\Illuminate\Support\Facades\App::getLocale() == 'en' ? $details->week_day_en_name : $details->week_day_ar_name}}

{{__('Is Off')}} : {{$details->is_off == '0' ? (\Illuminate\Support\Facades\App::getLocale() == 'en' ? 'No' : 'لا') : (\Illuminate\Support\Facades\App::getLocale() == 'en' ? 'Yes' : 'نعم')}}

{{__('Week Day Number')}} : {{$details->week_day_number}}

@foreach($details->time_slot as $time_slot)

{{__('Time From')}} : {{date('h:i',strtotime($time_slot->time_from))}} / {{__('Time To')}} : {{date('h:i',strtotime($time_slot->time_to))}}

@endforeach
@endforeach
@endsection