@extends('front.inner-layout.app') @section('content')

Booked appointments

@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
  • --}}

Appointment list

{{$businessProfile->name ??''}}
{{-- {{$parent->first_name.' '.$parent->last_name}} --}}
@foreach($data as $val) @if($val['flag'] =='0') @endif @endforeach
Date Time Service type Provider Location
{{$val['date']}} {{$val['start_time']}} {{$val['service_type']}} {{$val['provider']}} {{$val['location']}}
@endsection