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

Application

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

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

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