@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)
{{ $app->id}} |
{{ $app->name}} |
|
{!! Form::open(array('route'=>['app.destroy',$app->id],'method'=>'DELETE')) !!}
{!! Form::button('',['class'=>'fa fa-trash del','type'=>'submit']) !!}
{!! Form::close() !!}
|
@endforeach
@stop