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

Your Order

@foreach(Cart::content() as $item) @endforeach
Product Quantity Total
{{ $item->name }}
x {{ $item->qty }}
${{ $item->total() }}
Total:
${{ number_format(Cart::total()) }}
Visa MasterCard DISCOVER Amex {{ csrf_field() }}
@endsection