@php $cart_total = 0; @endphp
@if (session('cart'))
@foreach (session('cart') as $cart)
{{ $cart['name'] }}
₱ {{ number_format($cart['price'], 2) }}
@if ($cart['amount'] > 0)
@endif
{{ $cart['amount'] }}
₱ {{ number_format($cart['amount'] * $cart['price'], 2) }}
x
@php $cart_total += $cart['amount'] * $cart['price']; @endphp
@endforeach
@endif