@use('App\Helpers\Helpers') @php $currencyCode = Helpers::getDefaultCurrencyCode(); $currencySymbol = ($currencyCode == 'INR') ? "Rs." : Helpers::getDefaultCurrencySymbol(); @endphp
Name - {{$order->consumer['name']}}
Email - {{$order->consumer['email']}}
Phone. - (+{{$order->consumer['country_code']}}) - {{$order->consumer['phone']}}
Order Numb. - {{$order->order_number}}
Order Date - {{$order->created_at->format("d/m/Y")}}
Payment Method - {{$order->payment_method}}
Billing Address | @if (!$order->is_digital_only)Shipping Address | @endif
---|---|
{{$order->billing_address['street']}} {{$order->billing_address['pincode']}}, {{$order->billing_address['city']}}, @if (isset($order->billing_address['state']) && isset($order->billing_address['country'])){{$order->billing_address['state']['name']}}, {{$order->billing_address['country']['name']}} @endifContact: ({{$order->billing_address['country_code']}}) {{$order->billing_address['phone']}} |
@if (!$order->is_digital_only)
No | Product Name | Price | Qty | Subtotal | Shipping Cost | Grand Total |
---|---|---|---|---|---|---|
{{++$no}} | {{$product->name}} | {{$currencySymbol}} {{$product->pivot->single_price}} | {{$product->pivot->quantity}} | {{$currencySymbol}} {{$product->pivot->subtotal}} | {{$currencySymbol}} {{$product->pivot->shipping_cost}} | {{$currencySymbol}} {{$product->pivot->subtotal + $product->pivot->shipping_cost + $product->pivot->tax}} |
Sub Total Tax Shipping Total Payable {{$currencySymbol}} {{$order->amount}} {{$currencySymbol}} {{$order->tax_total}} {{$currencySymbol}} {{$order->shipping_total}} {{$currencySymbol}} {{$order->total}} |