@extends('layouts.backend') @section('content')
ID | Name | Label | Actions |
---|---|---|---|
{{ $item->id }} | {{ $item->name }} | {{ $item->label }} | {!! Form::open([ 'method' => 'DELETE', 'url' => ['/admin/permissions', $item->id], 'style' => 'display:inline' ]) !!} {!! Form::button('', array( 'type' => 'submit', 'class' => 'btn btn-danger btn-sm', 'title' => 'Delete Permission', 'onclick'=>'return confirm("Confirm delete?")' )) !!} {!! Form::close() !!} |