@extends('staffs.layout') @section('style') @endsection @section('content')
{{ __('Time Slots') }}
{{ __('Add Time Slot') }}
@if (count($service_hours) == 0)

{{ __('NO TIME SLOT FOUND') . '!' }}

@else
@foreach ($service_hours as $hour) @endforeach
{{ __('Day') }} {{ __('Start Time') }} {{ __('End Time') }} {{ __('Max Booking') }} {{ __('Actions') }}
{{ $hour->staffday->day }} {{ $hour->start_time }} {{ $hour->end_time }} @if ($hour->max_booking == null) {{ __('Unlimited') }} @else {{ $hour->max_booking }} @endif
{{ __('Edit') }}
@csrf
@endif
@include('staffs.time.servicehour.create') @include('staffs.time.servicehour.edit') @endsection @section('script') @endsection