{!! Form::open(array('route' => array('refunds.store'), 'class' => 'form-horizontal form-label-left', 'method' => 'POST')) !!}
{!! Form::select('branch[]', [], null, array('id' => 'branch', 'class' => 'form-control', 'multiple' => 'multiple')) !!}
{!! Form::text('dateFrom', $dateFrom, array('class' => 'form-control', 'id' => 'dateFrom')) !!}
{!! Form::text('dateTo', $dateTo, array('class' => 'form-control', 'id' => 'dateTo')) !!}

Return Items Report {{ $formattedDateFrom == $formattedDateTo ? $formattedDateFrom : $formattedDateFrom . ' - ' . $formattedDateTo }}

@foreach($refundItems as $refund) @endforeach
Date Time Branch Terminal # Transaction # Reference # User Barcode Item Code Description Qty Price Amount Customer Refund Reason Refund Status Remarks Posting Time
{{ $refund->local_time }} {{ $refund->branch_name }} {{ $refund->terminal_no }} {{ $refund->transaction_no }} {{ $refund->ref_no }} {{ $refund->user }} {{ $refund->barcode }} {{ $refund->itemcode }} {{ $refund->description }} {{ $refund->qty }} {{ number_format($refund->price,2) }} {{ number_format($refund->amount,2) }} {{ $refund->customer_name }} {{ $refund->reason }} {{ $refund->refund_status }} {{ $refund->categ_reason }} {{ $refund->created_at }}
{!! Paginate::show($refundItems) !!} {{ $refundItems->appends(request()->except('page'))->links() }}
{!! Form::close() !!}