{{ $shops->shop_name_logo->name }}
@foreach($shops->contacts as $key) @if($loop->index==0){{ $key->email }}
{{ $key->phone }}
{{ $key->address }}
@endif @endforeachINVOICE ID# {!! $orders->invoice_id !!}
Payment Method : {!! str_replace('_', ' ', $orders->payment_method) !!}
Order Status : {{ $orders->order_status }}
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, '.', '')}} | ||
| Service Charge | ৳{{ number_format((float)$orders->shipping_charge, 2, '.', '')}} | ||
| Coupon Discount | ৳{{ number_format((float)$orders->coupon_discount, 2, '.', '')}} | ||
| Total Amount | ৳{{ number_format((float)($orders->total_amount + $orders->shipping_charge - $orders->coupon_discount), 2, '.', '')}} | ||