@extends('admin::curd.index') @section('heading') {!! trans('inspection_scheduling::inspection_scheduling.name') !!} {!! trans('cms.manage') !!} {!! trans('inspection_scheduling::inspection_scheduling.names') !!} @stop @section('title') {!! trans('inspection_scheduling::inspection_scheduling.names') !!} @stop @section('breadcrumb')
@stop @section('entry')Trans ID | Inspection Date | Scheduler Code | Scheduler Name | Technician | Inspection Type | Asset Count | Work Department | Inspection Status | {!! Form::text('search[inspection_schedulings.code]')->id('ser_code')->raw()!!} | {!! Form::text('search[inspection_schedulings.inspection_date]')->addClass('datepick')->placeholder('Search Date')->id('ser__max')->raw()!!} | {!! Form::text('search[schedulers.code]')->id('ser_name')->raw()!!} | {!! Form::text('search[scheduler_name]')->id('ser_name')->raw()!!} | {!! Form::select('search[inspection_schedulings.technician_id]')->options([''=>'All']+User::technicians())->raw()!!} | {!! Form::select('search[inspection_schedulings.inspection_type]')->options([''=>'All']+ScheduleMaster::schedule_masters())->id('ser_schedule')->raw()!!} | {!! Form::select('search[workdepartmentid]')->options([''=>'All']+WorkDepartment::work_departments())->id('ser_work_department')->raw()!!} | {!! Form::select('search[inspection_status]') -> options(['' => 'All'] + trans('inspection_scheduling::inspection_scheduling.options.inspection_status')) ->id('ser_status') ->raw()!!} |
---|