@extends('admin.layouts.app') @section('content')

Appointments

@include('success.success') @include('errors.error') @foreach($appointments as $setting) @endforeach
S.N. Date Start Time End Time Booking Status Action
{{$loop->iteration}} {{$setting->date}} {{$setting->start_time}} {{$setting->end_time}} {{$setting->is_booked ? 'Booked' : 'Not Booked'}}
{!! $appointments->links() !!}
@endsection