@extends('layouts.app') @section('title', 'Cart') @section('content')
@foreach(Cart::instance('default')->content() as $item) @endforeach
{{__("Image")}} {{__("Product")}} {{__('Price')}} {{__("Quantity")}} {{__("Total")}}
@if(Cart::instance('default')->count())
@endif
@endsection