@php $shipping_address = $order->shipping_address; @endphp Integmeds :: Order Invoice
logo
INVOICE
#{{$order->order_number}}
Issued
{{ date('F d, Y', strtotime($order->created_at)) }}
From:
Integmeds
12727 Featherwood Drive Suite 104
Houston, TX 77034
United States
+1 (346) 346-0732
Billed to:
{{$shipping_address['first_name'] ?? ''}} {{$shipping_address['last_name'] ?? ''}}
{{$shipping_address['address_line1'] ?? ''}}
{{$shipping_address['address_line2'] ?? ''}}
{{$shipping_address['state'] ?? ''}}, {{$shipping_address['city'] ?? ''}}, {{$shipping_address['postal_code'] ?? ''}}
{{$shipping_address['phone'] ?? ''}} , {{$shipping_address['country'] ?? ''}}
@foreach ($order->items as $item) @endforeach
Item Quantity Price Subtotal
{{$item->product?->product_name ?? ''}} {{$item->quantity ?? 0}} {{config('app.currency_symbol')}}{{$item->price ?? 0}} {{config('app.currency_symbol')}}{{$item->price * $item->quantity ?? 0}}
@if($order->discount && $order->discount > 0) @endif @if($order->shipping_cost && $order->shipping_cost > 0) @endif
Subtotal {{config('app.currency_symbol')}}{{$order->subtotal ?? 0}}
Discount - {{config('app.currency_symbol')}}{{$order->discount ?? 0}}
Shipping Cost + ${{$order->shipping_cost ?? 0}}
Grand Total {{config('app.currency_symbol')}}{{ $order->total_amount ?? 0 }}
Terms and conditions
Writing down payment terms helps clients process payments faster, which in turn, results in better cash flow for the billing party.