@extends('backend.app') @section('content')
| Product Name | Product Price | Product Quantity | Total Price |
|---|---|---|---|
| {{$item->name}} | {{$item->unit_price}} | {{$item->total_qty}} | {{$item->unit_price * $item->total_qty}} | @php $totalPrice += $item->unit_price * $item->total_qty; $totalQuantity += $item->total_qty @endphp
| Total | {{ $totalQuantity }} | {{ $totalPrice }} | |