{{ $shops?$shops->shop_name_logo->name:"" }}
@if($shops) @foreach($shops->contacts as $key) @if($loop->index==0){{ $key->email }}
{{ $key->phone }}
{{ $key->address }}
@endif @endforeach @endifINVOICE ID# {!! $orders->invoice_id !!}
Payment Method : {!! str_replace('_', ' ', $orders->payment_method) !!}
@if( $orders->transaction_status)Transection Status : {{ $orders->transaction_status }}
@endifOrder Status : {{ $orders->order_status }}
Date : {{ $orders->created_at->format('Y-m-d') }}
Billing Address
Name : {{ $orders->bill_name }}
Email : {{ $orders->bill_email }}
Phone : {{ $orders->bill_phone }}
Address : {{ $orders->bill_address }}
Country : {{ $orders->bill_country }}
Town/City : {{ $orders->bill_town_city }}
Zip Code : {{ $orders->bill_zip_code }}
Delivery Address
Name : {{ $orders->ship_name }}
Email : {{ $orders->ship_email }}
Phone : {{ $orders->ship_phone }}
Address : {{ $orders->ship_address }}
Country : {{ $orders->ship_country }}
Town/City : {{ $orders->ship_town_city }}
Zip Code : {{ $orders->ship_zip_code }}
| Product Description | Unit Price | Quantity | Total Price |
|---|---|---|---|
|
{{ $key->food_item_name }} |
৳{{ number_format((float)$key->price, 2, '.', '')}} | {{ $key->quantity }} | ৳{{ number_format((float)$key->total_amount, 2, '.', '')}} |
| Sub Total | ৳{{ number_format((float)$orders->total_amount, 2, '.', '')}} | ||
| Delivery Charge | ৳{{ number_format((float)$orders->shipping_charge, 2, '.', '')}} | ||
| Coupon Discount | ৳{{ number_format((float)$orders->coupon_discount, 2, '.', '')}} | ||
| 5% VAT | ৳{{ number_format((float)$orders->vat_amount, 2, '.', '')}} | ||
| Card Charge | ৳{{ number_format((float)$orders->online_charge, 2, '.', '')}} | ||
| Total Amount | ৳{{ number_format((float)($orders->total_amount + $orders->shipping_charge - $orders->coupon_discount + $orders->vat_amount), 2, '.', '')}} | ||