@extends('app.master') @section('title',$title) @section('breadcrumb') @include('app.layouts.rent.breadcrumb',[ 'pageTitle' => $title, 'lists' => [ [ 'link' => '#', 'name' => 'Roles Management', ], [ 'link' => 'roles.index', 'name' => 'Roles', ], [ 'link' => '#', 'name' => $title, ] ] ]) @endsection @section('content')
| No | Name | Action | ||
|---|---|---|---|---|
| {{ $role->id }} | {{ $role->name }} | Show | Edit | {!! Form::open(['method' => 'DELETE','route' => ['roles.destroy', $role->id],'style'=>'display:inline']) !!} {!! Form::submit('Delete', ['class' => 'btn btn-danger btn-sm']) !!} {!! Form::close() !!} |