@extends('frontend.layouts.app') @section('content')
@csrf

Hi, {{ $user->f_name }}

Member since {{ $user->created_at->format('d M Y') }}

@if(count($user->appointments) > 0) @php $i=1; @endphp @foreach($user->appointments as $appointment) @php $startTime = \Carbon\Carbon::parse($appointment->time)->format('h:i A'); $endTime = \Carbon\Carbon::parse($appointment->time)->addMinutes(30)->format('h:i A'); @endphp @if($appointment->status == 'completed') @elseif($appointment->status == 'missed') @else @endif @endforeach
# Time Date Service Type
{{ $i++ }} {{ $startTime }} - {{ $endTime }} {{ \Carbon\Carbon::parse($appointment->date)->format('d M') }} {{ $appointment->service->title }} Completed Missed Reserved
@else

You haven't booked any Appointments yet

@endif




@endsection @section('script') @endsection