@if(isset($products) && count($products) && isset($total_products))
{{--{{dd($total_products)}}--}}
| Tổng : |
{{number_format($total_products[0]->total_price)}} |
{{$total_products[0]->total_order}} |
|
|
|
|
|
|
|
|
|
@foreach($products as $key => $item)
| {{$key+1}} |
{{@$item->product->name}} |
{{number_format($item->total_price)}} |
{{$item->total_order}} |
{{$item->total_order > 0 ? number_format($item->total_price/$item->total_order) : 0}} |
|
|
|
|
|
|
|
|
|
@endforeach
@endif