@extends('admin.layouts.master') @section('content')
{{ trans('quickadmin::templates.templates-customView_index-list') }}

The following invoice have been checked and validated. Please confirm the below and continue.

{!! Form::open(array('files' => true, 'route' => config('quickadmin.route').'.courierconfirm', 'id' => 'form-with-validation', 'class' => 'form-horizontal')) !!} {!! Form::submit( 'Confirm', array('class' => 'btn btn-primary')) !!}

The invoice total are as follows
Charges total: £{{ number_format((float) $charges, 2) }}
Invoice Lines: {{ (float) $lines }}
Charge per line: £{{ number_format((float) $chargePerLine, 2) }}
BW Orders: {{ (float) count($orders) }}
@foreach ($orders as $order) @endforeach
Order ID Shipping Cost
{{ $order['order_id'] }} {{ Form::hidden('orderids[]',$order['order_id']) }} £{{ number_format((float) $order['price'], 2) }} {{ Form::hidden($order['order_id'].'-cost', $order['price']) }}
{!! Form::close() !!}

@endsection