@extends('admin::curd.index') @section('heading') {!! trans('scheduler::facility_scheduler.name') !!} {!! trans('cms.manage') !!} {!! trans('scheduler::facility_scheduler.names') !!} @stop @section('title') {!! trans('scheduler::facility_scheduler.names') !!} @stop @section('breadcrumb')
@stop @section('entry'){!! trans('scheduler::facility_scheduler.label.code')!!} | {!! trans('scheduler::facility_scheduler.label.name')!!} | Schedule | Technician | Work Department | Start Date | End Date | {!! trans('scheduler::facility_scheduler.label.status')!!} | {!! Form::text('search[code]')->id('ser_code')->raw()!!} | {!! Form::text('search[name]')->id('ser_name')->raw()!!} | {!! Form::select('search[inspection_type]')->options([''=>'All']+ScheduleMaster::schedule_masters())->id('ser_schedule')->raw()!!} | {!! Form::select('search[technician_id]')->options([''=>'All']+User::technicians())->raw()!!} | {!! Form::select('search[work_department_id]')->options([''=>'All']+WorkDepartment::work_departments())->id('ser_work_department')->raw()!!} | {!! Form::text('search[facility_schedulers.start_date]')->id('ser_start_date')->addClass('datepick')->raw()!!} | {!! Form::date('search[facility_schedulers.end_date]')->id('ser_end_date')->addClass('datepick')->raw()!!} | {!! Form::select('search[status]') -> options(['' => 'All'] + trans('scheduler::scheduler.options.status')) ->id('ser_status') ->raw()!!} |
---|