@extends('admin.layout') @section('style') @endsection @section('content')
@if (count($service_hours) == 0)

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

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