@extends('layouts.customer.app') @section('title', 'Peds | Booking History') @section('styles') @endsection @section('content') {{-- CONTAINER --}}
@include('layouts.includes.alert')
avatar

Customer : {{ $booking->user->customer->full_name }}

Service : {{ $booking->service->name }}

Barber : {{ $booking->barber->full_name }}

Date Schedule : {{ formatDate($booking->schedule->date_time_start) }} at {{ formatDate($booking->schedule->date_time_start, 'time') }} - {{ formatDate($booking->schedule->date_time_end, 'time') }}

Customer's Note : {{ $booking->note ?? 'N/A' }}

{{-- Status --}}

Status - {!! handleBookingStatus($booking->status) !!}

@if ($booking->remark)

Remark: {{ $booking->remark }}

@endif @if ($booking->is_online)

Control No : {{ $booking->reference_no }}

Paid Via : {{ $booking->payment_method->type }}

@endif

Created At: {{ formatDate($booking->created_at) }}


{{-- Only show if booking is thru online --}} @if ($booking->is_online) @endif
{{-- End CONTAINER --}} @endsection @section('script') @endsection