Entity:
{{ $entity->name }} ({{ $entity->type }})
Action:
{{ $result->key }}
Scope:
{{ $result->scope ?? 'global' }}
Route:
{{ $request->method() }} {{ $request->path() }}
{{-- Entity Hierarchy Info --}}
@if($entity->depth > 0)
Entity Hierarchy:
@php
$pathParts = explode('/', trim($entity->path, '/'));
@endphp
@foreach($pathParts as $index => $code)
@if($index > 0)
→
@endif
{{ $code }}
@endforeach