{!! Form::select('when', $when, $filters['when'] ?? 1, ['class' => 'form-control','id'=>'fieldWhen']) !!}
{!! Form::date("date_start", $filters['date_start'],
['class' => "form-control-sm bg-white", 'id'=> 'datePickerStart', 'max' => \Carbon\Carbon::now()->format('Y-m-d')]) !!}
{!! Form::date("date_end", $filters['date_end'],
['class' => "form-control-sm bg-white", 'id'=> 'datePickerEnd', 'max' => \Carbon\Carbon::now()->addDay()->format('Y-m-d')]) !!}
{!! Form::select('where', $where, $filters['where'] ?? 'All', ['class' => 'form-control','id'=>'fieldWhere']) !!}
{!! Form::select('region', $regions, $filters['region'] ?? 0, ['class' => 'form-control']) !!}
{!! Form::select('city', $cities, $filters['city'] ?? 0, ['class' => 'form-control']) !!}
{!! Form::select('hospital', $hospitals, $filters['hospital'] ?? 0, ['class' => 'form-control']) !!}