@extends('layouts.main') @section('title', 'Entri Perawatan Rutin - Manajemen Strategi - Asset Management') @section('css') @stop @section('pagetitle', 'Entri Perawatan Rutin - Manajemen Strategi') @section('content')
Entri Perawatan Rutin Form
@if (Session::has('error'))
{{ Session::get('error', 'Error') }}
@endif @if (Session::has('success'))
{{ Session::get('success', 'Success') }}
@endif {!! Form::open(['url' => route('mstrategi::mstrategi-simpanPrwRutin'), 'class' => 'form-horizontal']) !!}
{!! Form::select('instalasi', $instalasi, null, ['class'=>'form-control select2', 'id'=>'instalasi']) !!}
{!! Form::select('aset', $equipment, null, ['class'=>'form-control select2', 'id'=>'aset']) !!}
@foreach($perawatan as $kolom) @endforeach @foreach($perawatan as $kolom) @endforeach
Komponen        {{ $kolom->name }}Action
{!! Form::close() !!}
@endsection @section('js') @endsection