Create Order Batch

This utility will output a batch of orders in PDF format. Simply enter the starting and ending order ID and click the Create button.

{{ Form::open(['url' => '/admin/reports/batch', 'class' =>'form-horizontal']) }}
{{ Form::label('start_order_id', 'Starting Order ID', ['class' => 'dark:text-slate-300 control-label']) }}
{{ Form::text('start_order_id', null, ['class' => 'form-control text-xl dark:bg-slate-600 dark:text-slate-300 dark:border-slate-900']) }}
{{ Form::label('end_order_id', 'Ending Order ID', ['class' => 'dark:text-slate-300 control-label']) }}
{{ Form::text('end_order_id', null, ['class' => 'form-control text-xl dark:bg-slate-600 dark:text-slate-300 dark:border-slate-900']) }}
{{ Form::close() }}