@extends('admin.template.layout') @section('header') @stop @section('content')
@csrf()
QR code
{!! QrCode::generate($datamain->order_number) !!}
Request Details

{{ $datamain->order_number ?? '' }}

{{ $datamain->customer_details->name ?? '' }}

{{ $datamain->category_details->name ?? '' }}

Pick Up

{{ $datamain->location ?? '' }}

{{ $datamain->landmark ?? '' }}

{{ $datamain->contact_person ?? '' }}

{{replace_plus($datamain->dail_code.' '.$datamain->mobile_no)}}

Drop Off

{{ $datamain->dropoff->location ?? '' }}

{{ $datamain->dropoff->landmark ?? '' }}

{{ $datamain->dropoff->contact_person ?? '' }}

{{replace_plus($datamain->dropoff->dail_code.' '.$datamain->dropoff->mobile_no)}}

Package Details

{{ $datamain->description ?? '-' }}

{{ $datamain->delivery_type?? '-' }}

{{ $datamain->size_details->name ?? '-' }}

{{ $datamain->care_details->name ?? '-' }}

{{ $datamain->instruction ?? '-' }}

{{ $datamain->date ?? '-' }}

{{ $datamain->time ?? '-' }}

@if(!empty($datamain->id))
@foreach ($datamain->images as $img)
@endforeach
@endif
Driver Details
@if(!empty($datamain->booking_status) && $datamain->booking_status >= 4) @endif
@if(!empty($datamain->booking_status) && $datamain->booking_status >= 4)
@if($datamain->booking_status >= 8) @endif
@endif

{{$datamain->comment}}

@if($datamain->signature)
@php $imageUrl = Storage::disk('public')->url("user/$datamain->signature"); @endphp
@endif
Price Details
Payment Type: {{payment_type($datamain->payment_type)}}
Subtotal: AED {{number_format($datamain->cost??0, 2, '.', '')}}
Service Price: AED {{number_format($datamain->service_price??0, 2, '.', '')}}
Tax: AED {{number_format($datamain->tax??0, 2, '.', '')}}
Grand Total: AED {{number_format($datamain->grand_total??0, 2, '.', '')}}
@stop @section('script') @stop