@component('components.filters', ['title' => __('report.filters')])
{!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'dailySummaryReport']), 'method' => 'get' ]) !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'id' => 'location_id','style' => 'width:100%']); !!}
{!! Form::label('date_range', __('report.date_range') . ':') !!}
{!! Form::text('date_range', null , ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'date_range', 'readonly']); !!}
{!! Form::label('date_range', __('report.date_range') . ':') !!}
@if (!empty($start_date))
{{ $start_date }}
@endif
to
@if (!empty($end_date))
{{ $end_date }}
@endif
{!! Form::close() !!}
@endcomponent