@extends('template.app') @section('title', 'Users') @section('css') @endsection @section('breadcrumb') @endsection @section('content')
@include('components.toast-notification')
@foreach($userRoles as $role) @endforeach
Name Permissions Action
{{ $role->name }} @foreach($role->permissions->sortBy('name') as $permission) {{ $permission->name }} @endforeach
@endsection @section('js') @endsection