@if (sizeof(Cart::instance('default')->content()) > 0) @foreach (Cart::instance('default')->content() as $item)
{!! $item->name !!}
{!! $item->qty !!} × {!! $item->price !!} = {{ $item->subtotal }} {{ __('EGP') }}
@endforeach
@else

{{ __('You have no items in your Shopping cart') }}


@endif