@extends('adminlte::page') @section('title', 'Booking Detail') @section('content_header')

Back

@stop @section('content')

{{ $setting->bname }} Date: {{ $booking->created_at->format('d, M Y') }}

From
{{ $setting->bname }}
Email: {{ $setting->email }}
Phone: {{ $setting->phone }}
{{ $setting->address }}
To
{{ $booking->first_name }} {{ $booking->last_name }}
Email: {{ $booking->email }}
Phone: {{ $booking->phone }}
{{ $booking->city }}, {{ $booking->state }}, {{ $booking->country }}
Order ID: #{{ $booking->order_id }}

Transaction ID: {{ $booking->transaction_id }}
Payment Method : {{ $booking->payment_mode }}
@if ($booking->payment_status == true) Status:
Paid
@endif
@if ($booking->payment_mode == 'Razorpay') @endif @if ($booking->payment_mode == 'Paypal') @endif
Name Phone Gender Service Booking Time Booking Date Birth Place Birth Time Amount
{{ $booking->first_name }} {{ $booking->last_name }} {{ $booking->phone }} {{ $booking->gender }} {{ $booking->service_name }} {{ $booking->booking_time }} {{ $booking->booking_date ? date('d M Y', strtotime($booking->booking_date)) : 'N/A' }} {{ $booking->birth_place }} {{ $booking->birth_time }}{{ Number::currency($booking->amount, 'inr') }}{{ Number::currency($booking->amount / 83, 'usd') }}

City: {{ $booking->city }} | State: {{ $booking->state }} | Country: {{ $booking->country }}

Service Provider: {{ $booking->employee_name }}

Booking Time: {{ $booking->booking_time }}

Booking Date: {{ $booking->booking_date ? date('d M Y', strtotime($booking->booking_date)) : 'N/A' }}

@if ($booking->payment_mode == 'Razorpay') @endif @if ($booking->payment_mode == 'Paypal') @endif
Total:{{ Number::currency($booking->amount, 'inr') }}{{ Number::currency($booking->amount / 83, 'usd') }}
@stop @section('js') @stop