@include('front.inner-layout.header')
The following appointments have been booked for {{$name}} {{$last_name}}
No appointments have been booked for {{$name}} {{$last_name}}
@foreach($booked_appointments as $val)
- {{$val['display_date']}}
@endforeach
{{--
--}}
The following appointments clash with your calendar and will not be booked unless you resolve the clashes
@foreach($data as $val)
@if($val['flag'] =='1')
- {{$val['display_date']}}
@endif
@endforeach
{{-- - Sat 22 Feb 08.00am
- Sat 24 Mar 08.00am
- Sat 23 Apr 08.00am
- Sat 25 May 08.00am
--}}
| Date |
Time |
Service type |
Provider |
Location |
@foreach($data as $val)
@if($val['flag'] =='0')
|
{{$val['date']}}
|
{{$val['start_time']}}
|
{{$val['service_type']}}
|
{{$val['provider']}}
|
{{$val['location']}}
|
@endif
@endforeach