@extends('admin.layouts.master') @section('title', 'Rolewise Permission list') @section('content')

{{ __('List of Permissions') }}

{{ __('List of Permissions') }}

@foreach ($roles as $id => $role) @endforeach
{{ __('#') }} {{ __('Role') }} {{ __('Permission List') }} {{ __('Action') }}
{{ ++$id }} {{ $role->name }} @foreach ($role->permissions as $permission) {{ $permission->permission_title }} @endforeach {{ __('Manage') }}
@csrf
@endsection