@extends('admin.layouts.app') @section('content')
profile-image
ID {{ $booking->booking_id }}
Doctor Name {{ $booking->doctor_name }}
Customer Name {{ $booking->user_name }}
Pet Name {{ $booking->pet_name }}
Description {{ $booking->description }}
Reason for Consultation {{ $booking->reason_for_consultation }}
Vaccination Details {{ $booking->vaccination_details }}
Appointment Date {{ date('jS F, Y', strtotime($booking->appointment_date)) }}
Appointment Time {{ date('h:i A', strtotime($booking->appointment_time)) }}
Consultation Type {{ $booking->consultation_type }}
@endsection