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

BUSSINESS

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

{{ link_to_route('bus.create','Add New ',null,['class'=>'btn btn-success']) }}

Bussiness Tables
@foreach($buss as $bus) @endforeach
รหัสกระบวนการ ชื่อกระบวนการ จัดการลำดับ จัดการ
{{ $bus->id}} {{ $bus->name}}
{!! Form::open(array('route'=>['bus.destroy',$bus->id],'method'=>'DELETE')) !!} {!! Form::close() !!}
@stop