Order Details
@if(session()->has('success'))
Shipping Info
{{ $response['order_details']->customer_name }}
@if($response['order_details']->order_type == 'Pickup')
Pickup Point:{{ $response['pickup_point']->warehouse_name ?? '' }}
Address:{{ $response['pickup_point']->address ?? '' }}
@else
{{ $response['order_details']->email }}
{{ $response['order_details']->phone1 }}
@if(!empty($response['order_details']->phone2))
|{{ $response['order_details']->phone2 }}
@endif
{{ $response['order_details']->address }}
@endif
Company Info
Kukreja Interiors
kukreja_interiors@yahoo.com
9665065522 /25 /34
A-45, R Quarters, Near Sai Chowk, Pimpri Pune 411017
Invoice Info
Order No: {{ $response['order_details']->order_code}}
Order Date:{{ date('d M Y', strtotime($response['order_details']->order_date))}}
Payment Status:
payment_status == 'Pending' || $response['order_details']->payment_status == 'Partially Paid')
onclick="updatePaymentStatus('{{ $response['order_details']->order_id }}')"
style="cursor: pointer;"
@endif>
{{ $response['order_details']->payment_status }}
Order Status: {{ $response['order_details']->status}}
@if(in_array($response['order_details']->payment_status, ['Partially Paid', 'Paid']))
Generate Receipt
@endif
@if($response['order_details']->status == 'Measurement')
Cut the material
@endif
Transporter Info
{{ $response['transporter_data']->contact_person ?? ''}}
{{ $response['transporter_data']->email ?? ''}}
{{ $response['transporter_data']->phone1 ?? ''}}@if(!empty($response['transporter_data']->phone2))
|{{ $response['transporter_data']->phone2 }}
@endif
{{ $response['transporter_data']->address ?? ''}}
Delivery Info
Date & Time:{{ date('d M Y H:i:s', strtotime($response['order_details']->updated_at)) }}
Payment Method:Cash On Delivery
Order Summary
| Sr.No | Product Name | Variant Name | Cutting Done | Quantity | Price | Total |
|---|---|---|---|---|---|---|
| {{ $i++}} | {{ $row->product_name}} | {{ $row->varient_code}}-{{ $row->varient_name}} | {{ $row->installer_status == 'Cutting Done' ? 'Yes' : 'No' }} | {{ $row->quantity}} | ₹ {{ round($row->price,2)}} | ₹ {{ $row->price*$row->quantity}} |
-
Gross Total
₹ {{ $response['order_details']->subtotal}}
@if($response['order_details']->discount > 1)
-
Coupon Discount
₹{{ $response['order_details']->discount}}
@endif
@if($response['order_details']->customer_discount_amount > 1)
-
Special Discount
₹ {{ $response['order_details']->customer_discount_amount}}
@endif
-
Grand Total
₹ {{ $response['order_details']->grandtotal }}
Payment Summary
| Receipt No | Total Amount | Paid Amount | Balance | Transaction Date | Payment Method |
|---|---|---|---|---|---|
| {{ $payment->receipt_id }} | ₹ {{ number_format($payment->amount_paid, 2) }} | ₹ {{ number_format($payment->pay_amount, 2) }} | ₹ {{ number_format($payment->remaining_amount, 2) }} | {{ date('d-M-Y', strtotime($payment->transaction_date)) }} |
{{ $payment->payment_mode }}
@php
$mode = trim($payment->payment_mode);
@endphp
@if($mode === 'Cheque')
@if(!empty($payment->cheque_number))
Cheque No: {{ $payment->cheque_number }} @endif @elseif($mode === 'Bank Transfer') @if(!empty($payment->bank_name)) Bank Name: {{ $payment->bank_name }} @endif @if(!empty($payment->account_number)) Account No: {{ $payment->account_number }} @endif @if(!empty($payment->ifsc_code)) IFSC: {{ $payment->ifsc_code }} @endif @elseif($mode === 'Online') @if(!empty($payment->reference_id)) Transaction ID: {{ $payment->reference_id }} @endif @endif |
| No payment summary found | |||||