@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 as $index => $type) @endforeach
{{__("ID")}} {{__("Description")}} {{__("Slot Duration")}} {{__("Time From")}} {{__("Time To")}} {{__("Details")}}
{{++$index}} {{$type->description}} {{$type->slot_duration}} {{date('h:i',strtotime($type->time_from))}} {{date('h:i',strtotime($type->time_to))}} {{__("Details")}}
@endsection