@extends('layouts.app') @section('title', 'Role Permissions') @push('styles') @endpush @section('content')
Select Role
Permissions for:
Edit Permissions
@csrf
@foreach($modules as $module)
{{ ucfirst($module->name) }}
@foreach($allActions as $action) @php $permissionName = strtolower($module->name.'.'.$action->name); @endphp
@endforeach
@endforeach
@endsection @push('scripts') @endpush