@extends('adminlte::page') @section('title', 'Booking Detail') @section('content_header')
@stop @section('content')| 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 }} | @if ($booking->payment_mode == 'Razorpay'){{ Number::currency($booking->amount, 'inr') }} | @endif @if ($booking->payment_mode == 'Paypal'){{ Number::currency($booking->amount / 83, 'usd') }} | @endif
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' }}
| Total: | @if ($booking->payment_mode == 'Razorpay'){{ Number::currency($booking->amount, 'inr') }} | @endif @if ($booking->payment_mode == 'Paypal'){{ Number::currency($booking->amount / 83, 'usd') }} | @endif
|---|