@if(empty($only) || in_array('sell_list_filter_location_id', $only))
{!! Form::label('sell_list_filter_location_id', __('purchase.business_location') . ':',['class'=>'form-label']) !!}
{!! Form::select('sell_list_filter_location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('app.all') ]); !!}
@endif
@if(empty($only) || in_array('sell_list_filter_customer_id', $only))
{!! Form::label('sell_list_filter_customer_id', __('contact.customer') . ':',['class'=>'form-label']) !!}
{!! Form::select('sell_list_filter_customer_id', $customers, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('app.all')]); !!}
@endif
@if(empty($only) || in_array('sell_list_filter_payer_id', $only))
{!! Form::label('sell_list_filter_payer_id', __('sale.payer') . ':',['class'=>'form-label']) !!}
{!! Form::select('sell_list_filter_payer_id', $businesses_payer, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('app.all')]); !!}
@endif
@if(empty($only) || in_array('sell_list_filter_payment_status', $only))
{!! Form::label('sell_list_filter_payment_status', __('purchase.payment_status') . ':',['class'=>'form-label']) !!}
{!! Form::select('sell_list_filter_payment_status', ['paid' => __('app.paid'), 'due' => __('app.due_invoices'), 'partial' => __('app.partial'), 'overdue' => __('app.overdue')], null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('app.all_invoices')]); !!}
@endif
@if(empty($only) || in_array('sell_list_filter_date_range', $only))
{!! Form::label('sell_list_filter_date_range', __('report.date_range') . ':',['class'=>'form-label']) !!}
{!! Form::text('sell_list_filter_date_range', null, ['placeholder' => __('app.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
@endif
@if((empty($only) || in_array('created_by', $only)) && !empty($sales_representative))
{!! Form::label('created_by', __('report.user') . ':',['class'=>'form-label']) !!}
{!! Form::select('created_by', $sales_representative, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
@endif
@if(empty($only) || in_array('sales_cmsn_agnt', $only))
@if(!empty($is_cmsn_agent_enabled))
{!! Form::label('sales_cmsn_agnt', __('app.sales_commission_agent') . ':',['class'=>'form-label']) !!}
{!! Form::select('sales_cmsn_agnt', $commission_agents, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
@endif
@endif
@if(empty($only) || in_array('service_staffs', $only))
@if(!empty($service_staffs))
{!! Form::label('service_staffs', __('restaurant.service_staff') . ':',['class'=>'form-label']) !!}
{!! Form::select('service_staffs', $service_staffs, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('app.all')]); !!}
@endif
@endif
@if(!empty($shipping_statuses))
@php /*
{!! Form::label('shipping_status', __('app.shipping_status') . ':',['class'=>'form-label']) !!}
{!! Form::select('shipping_status', $shipping_statuses, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('app.all')]); !!}
*/
@endphp
@endif