@extends('backend.admin-master') @section('style') @include('backend.partials.datatable.style-enqueue') @endsection @section('site-title') {{__('All Appointment booking time')}} @endsection @section('content')

{{__('All booking time')}}

@foreach($all_booking_time as $data) @endforeach
{{__('ID')}} {{__('Time')}} {{__('Status')}} {{__('Action')}}
{{$data->id}} {{$data->time}}

{{__('add new')}}

@csrf
@endsection @section('script') @include('backend.partials.datatable.script-enqueue') @include('backend.partials.bulk-action',['action' =>route('admin.appointment.booking.time.bulk.action') ]) @endsection