@extends('backend.app') @section('content')
| Invoice No | IP Address | Customer | Phone | Address | Product | Quantity | Total |
|---|---|---|---|---|---|---|---|
| #{{$item->order->invoice_no}} | {{$item->order->ip_address}} | {{$item->order->first_name}} | {{$item->order->mobile}} | {{$item->order->shipping_address}} | {{$item->product->name}} | {{$item->quantity}} | @php $row_total = $item->unit_price * $item->quantity; $total += $row_total; @endphp{{ $row_total }} |
Total Amount : {{ $total }} |
|||||||