- Add SettingsCatalogCategoryResolver service with 3-tier caching
- Add SettingsCatalogCategory model and migration
- Add warm-cache commands for definitions and categories
- Update PolicyNormalizer to display categories in settings table
- Fix extraction of nested children in choiceSettingValue
- Add category inheritance from parent settings
- Skip template IDs with {tenantid} placeholder in Graph API calls
- Update Livewire table with Category, Data Type, and Description columns
Related tests updated and passing.
15 lines
378 B
PHP
15 lines
378 B
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\PolicyVersionResource\Pages;
|
|
|
|
use App\Filament\Resources\PolicyVersionResource;
|
|
use Filament\Resources\Pages\ViewRecord;
|
|
use Filament\Support\Enums\Width;
|
|
|
|
class ViewPolicyVersion extends ViewRecord
|
|
{
|
|
protected static string $resource = PolicyVersionResource::class;
|
|
|
|
protected Width|string|null $maxContentWidth = Width::Full;
|
|
}
|