{!! Form::open(array('route' => array('upsell.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')) !!}

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

{!! Form::close() !!}
@foreach($upsells as $upsell) @endforeach
Transaction Date Branch Name Doctor Transaction # Barcode Description Type Quantity
{{ $upsell->local_time }} {{ $upsell->branch_name }} {{ $upsell->doctor }} {{ $upsell->transaction_no }} {{ $upsell->barcode }} {{ $upsell->description }} {{ $upsell->item_type }} {{ $upsell->qty }}
{!! Paginate::show($upsells) !!} {{ $upsells->appends(request()->except('page'))->links() }}