Invoice To

{{$order->customer_fname.' '.$order->customer_lname}}

  • #{{$order->customer_address}}
  • +{{$order->customer_phone}}

Invoice

  • Invoice ID:{{$order->order_number}}
  • Date:{{ $order->created_at->format('d/m/Y') }}
@php $orderItem = DB::table('order_items')->where(['order_id' => $order->id])->get(); $total = 0; $subtotal = 0; foreach ($orderItem as $key => $value) { $total+= $value->price * $value->qty; $subtotal+= $value->price; } @endphp @foreach($orderItem as $key => $item) @endforeach
Item ID Item Name Item Image Price Qty Amount
{{$value->id}} {{$item->name}} ${{$item->price}} {{$item->qty}} ${{$item->price}}
Subtotal ${{$subtotal}}
Grand Total ${{$total}}
Invoice was created on a computer and is valid without the signature and seal.