Cart — {{ $restaurant->name }}

@if($cart->isEmpty())
Cart empty.
@else
@foreach($cart as $row) @endforeach
ItemPriceQtyLine
{{ $row['name'] }}৳ {{ number_format($row['price'],2) }}{{ $row['qty'] }}৳ {{ number_format($row['price']*$row['qty'],2) }}
Subtotal৳ {{ number_format($subtotal,2) }}
Delivery৳ {{ number_format($delivery,2) }}
Total৳ {{ number_format($total,2) }}
Checkout (Demo COD)
@csrf
@endif