@extends('layout.master') @section('title', 'Roles') @section('header-title', 'Roles') @section('content')

Dashboard

Roles List
@can('role_trash_view') Trash {{ $trashrole ?? 0 }} @endcan @can('role_create') Add Role @endcan
@foreach ($roles as $role) @endforeach
Name Action
{{ ucfirst($role->name) }}
@can('role_edit') @endcan @can('role_trash')
@csrf @method('DELETE')
@endcan
@endsection