@if(Cart::isEmpty())

Nu aveti produse in cos!

@else
@foreach(Cart::getContent()->sortBy('id') as $item) @endforeach
Produs Preț Cantitate Total
{{ $item->name }}
{{ $item->name }}
Preț {{ $item->price }} Lei Cantitate
Total {{ $item->price * $item->quantity }} Lei
Subtotal
{{ Cart::getSubTotal() }} Lei
Taxă livare
{{ config('transport.price') }} Lei
Total
{{ Cart::getTotal() + config('transport.price') }} Lei
Check out
@endif