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

Booked appointments

@include('front.inner-layout.header')
--}}

Booked appointments

@include('front.inner-layout.header')

The following appointments have been booked for {{$name.' '.$last_name}}

    @foreach($data as $val)
  • {{$val['display_date']}}
  • @endforeach {{--
  • Sat 25 May 08.00am
  • --}}

Appointment list

{{$businessProfile->name ??''}}
{{$name.' '.$last_name}}
{{--

Appointment list

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