International Patients
@can('international-patient-add')
Create
@endcan
Apply Filters
{!! Form::open(['route' => 'admin.international-patient.index', 'method' => 'get', 'id' => 'form-search']) !!}
{!! Form::close() !!}
{!! Form::label('search', __('search')) !!}
{!! Form::text('keyword', null, ['class' => 'form-control']) !!}
{!! Form::label('per_page', __('per_page')) !!}
{!! Form::select('perPage', perPage(), null, ['class' => 'form-control select2', 'id' => 'perPage']) !!}
{!! Form::label('status', __('status'), ['class' => 'form-label']) !!}
{!! Form::select('status', status(true, 'All'), null, ['class' => 'form-control select2']) !!}
@include('admin.international-patient.pagination')