@extends('master') @section('js') @endsection @section('css') @endsection @section('content')

Quick Order Entry

If you know the product code of the item you wish to order, enter it below to quickly add it to your basket.

@php $alerts = app(Cartalyst\Alerts\Alerts::class)->get(); @endphp @foreach ($alerts as $alert) @endforeach
{!! csrf_field() !!}

@if (count($items) > 0) @foreach ($items as $item) @endforeach
Code Description Pack size Cost  
{{ $item->code }} {{ $item->name }} @foreach ($item->attributes() as $attribute=>$data) ({{ $data->value }} - $price_srp) @endforeach {{ $item->unit }} £{{ number_format($item->subTotal(),2) }}
{!! csrf_field() !!}
{!! csrf_field() !!}
{!! csrf_field() !!}
VAT: £{{ number_format(Cart::conditionsTotalSum(),2) }}
Total : £{{ number_format(Cart::subTotal(),2) }}
@if (Cart::itemsSubtotal() >= 200)

Proceed to checkout

@else

Proceed to checkout

You must meet the minimum order of £200 to proceed to checkout.

@endif @else

Your basket is currently empty.

@endif
@endsection