{{-- Training Mode Permission Prompt --}} {{-- Shown when a permission is undefined and training mode is enabled --}} Permission Training - Commerce Matrix @vite(['resources/css/app.css'])
{{-- Header --}}

Permission Not Defined

Training Mode Active

{{-- Request Details --}}
Entity: {{ $entity->name }} ({{ $entity->type }})
Action: {{ $result->key }}
Scope: {{ $result->scope ?? 'global' }}
Route: {{ $request->method() }} {{ $request->path() }}
{{-- Training Form --}}
@csrf {{-- Decision Buttons --}}
{{-- Lock Option (only for non-root entities) --}} @if($entity->depth > 0)
@endif
{{-- Footer --}}
← Go back without training
Commerce Matrix v1.0
{{-- 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
@endif