@extends('layouts.front') @section('page')

In Your Shopping Cart: {{ Cart::content()->count() }} items

@foreach(Cart::content() as $pdt) @endforeach
  Product Price Quantity Total
product
{{ $pdt->name }}
${{ $pdt->price }}
- +
${{ $pdt->total() }}
Apply Coupon
Apply Coupon

Cart Totals

Total: ${{ Cart::total() }}
Checkout
@endsection