TenantAtlas/apps/platform/resources/views/filament/pages/reviews/review-register.blade.php
ahmido eced9ad50c Spec 315: implement environment CTA explicit filter contract (#370)
## Summary
- hard-cut environment-owned CTA links into workspace hubs to canonical `environment_id` filters
- add shared workspace-hub environment filter resolution and visible filtered-state rendering across in-scope hubs
- update workspace hub pages, link helpers, and focused test coverage for explicit environment CTA filtering

## Validation
- Not run in this workflow

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #370
2026-05-16 11:50:20 +00:00

29 lines
1.1 KiB
PHP

<x-filament-panels::page>
@php($environmentFilterChip = $this->environmentFilterChip())
<x-filament::section>
<div class="flex flex-col gap-3">
<div class="text-lg font-semibold text-gray-900 dark:text-gray-100">
Recurring review register
</div>
<div class="text-sm text-gray-600 dark:text-gray-300">
Review draft, published, archived, and superseded environment reviews across the environments you are entitled to manage.
</div>
<div class="text-sm text-gray-600 dark:text-gray-300">
Opening a row returns to the environment detail surface so executive review history stays environment-safe and audit-friendly.
</div>
@if ($environmentFilterChip !== null)
@include('filament.partials.workspace-hub-environment-filter-chip', [
'label' => $environmentFilterChip['label'],
'clearUrl' => $environmentFilterChip['clear_url'],
])
@endif
</div>
</x-filament::section>
{{ $this->table }}
</x-filament-panels::page>