@extends('admin.layouts.template') @section('page_heading') @section('content')

ระดับกระบวนการ

@if(Session::has('message'))
{{ Session::get('message') }}
@endif


ตารางกระบวนการ
{{ link_to_route('bus.create','เพิ่มกระบวนการ',null,['class'=>'btn btn-success']) }}
@foreach($buss as $bus) @endforeach
รหัสกระบวนการ ชื่อกระบวนการ ประเภท หน่วยงานที่เกี่ยวข้อง จัดการ
@if($bus->ids < 10 ) {{ $bus->remark}}0{{ $bus->ids}} @else {{ $bus->remark}}{{ $bus->ids}} @endif {{ $bus->name}} {{ $bus->type1}} @foreach($des as $de) @if($bus->id == $de->id ) {{ $de->department_id}} @endif @endforeach {!! Form::open(array('route'=>['bus.destroy',$bus->id],'method'=>'DELETE')) !!} {!! Form::close() !!}
@stop