@extends('layouts.main') @section('title', 'Jadwal Kerja Pompa - Asset Management') @section('css') @stop @section('pagetitle', 'Jadwal Kerja Pompa') @section('content')
Jadwal Kerja Pompa Form
@if (Session::has('error'))
{{ Session::get('error', 'Error') }}
@endif @if (Session::has('success'))
{{ Session::get('success', 'Success') }}
@endif @if ($data!='') {!! Form::model($data, ['route' => ['jadwalkerja::jadwalkerja-simpan'], 'class' => 'form-horizontal']) !!} {!! Form::hidden('id', null) !!} @else {!! Form::open(['url' => route('jadwalkerja::jadwalkerja-simpan'), 'class' => 'form-horizontal']) !!} @endif
@if ($data!='') {!! Form::text("namaaset", $namaaset, ['class'=>'form-control', 'id'=>'namaaset', 'disabled']) !!} {!! Form::hidden('equipment_id', null) !!} {!! Form::hidden('minggu', null) !!} @else {!! Form::select('equipment_id', $aset, null, ['class'=>'form-control select2', 'id'=>'aset']) !!} @endif
{!! Form::select('minggu[]', $week, $weekval, ['class'=>'form-control select2', 'id'=>'minggu', 'multiple']) !!}
{!! Form::close() !!}
@endsection @section('js') @endsection