@extends('backend.layouts.app') @section('content')

Home / Order

Review Order


@if (session()->has('success_message'))
{{ session()->get('success_message') }}
@endif @if (session()->has('error_message'))
{{ session()->get('error_message') }}
@endif @if (sizeof(Cart::content()) > 0) {!! Form::open(array('url' => 'admin/payment', 'class' => 'form-horizontal edit_form', 'files' => true )) !!}

@foreach (Cart::content() as $item) @endforeach
Product Participant Quantity Price
{{ $item->name }} {{ $item->options->student_name }} {{ $item->qty }} ${{ $item->subtotal }}
Subtotal ${{ Cart::instance('default')->subtotal() }}
Tax ${{ Cart::instance('default')->tax() }}
Your Total ${{ Cart::total() }}
Back
{!! Form::close() !!} @else

You have no items in your shopping cart

Continue Shopping @endif
@endsection