@extends('layouts.app') @section('content')
Role @include('component.breadcrumb', ['items' => ['Auth', 'Role', 'All Roles']])
@include('component.flash')
@foreach($roles as $role) @endforeach
Name Actions
{{$role->name}}
{{ csrf_field() }} {{ method_field('DELETE') }} @include('component.sweetalert-delete', ['button' => '.btn-delete-'.$role->id, 'form' => '.form-delete-'.$role->id, 'text' => 'This item '.$role->name.' will be permanently deleted'])
@stop