62 lines
3.2 KiB
PHP
62 lines
3.2 KiB
PHP
<x-filament::page>
|
|
<x-filament::section>
|
|
<div class="text-base font-medium">Policies</div>
|
|
<div class="overflow-x-auto">
|
|
<table class="min-w-full text-sm">
|
|
<thead>
|
|
<tr class="text-left border-b border-gray-200 dark:border-gray-800">
|
|
<th class="py-2 pr-4 font-medium">Type</th>
|
|
<th class="py-2 pr-4 font-medium">Label</th>
|
|
<th class="py-2 pr-4 font-medium">Category</th>
|
|
<th class="py-2 pr-4 font-medium">Dependencies</th>
|
|
<th class="py-2 pr-4 font-medium">Restore</th>
|
|
<th class="py-2 pr-4 font-medium">Risk</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-gray-200 dark:divide-gray-800">
|
|
@foreach ($supportedPolicyTypes as $row)
|
|
<tr>
|
|
<td class="py-2 pr-4">{{ $row['type'] ?? '' }}</td>
|
|
<td class="py-2 pr-4">{{ $row['label'] ?? '' }}</td>
|
|
<td class="py-2 pr-4">{{ $row['category'] ?? '' }}</td>
|
|
<td class="py-2 pr-4">{{ ($row['dependencies'] ?? false) ? '✅' : '—' }}</td>
|
|
<td class="py-2 pr-4">{{ $row['restore'] ?? 'enabled' }}</td>
|
|
<td class="py-2 pr-4">{{ $row['risk'] ?? 'normal' }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</x-filament::section>
|
|
|
|
<x-filament::section>
|
|
<div class="text-base font-medium">Foundations</div>
|
|
<div class="overflow-x-auto">
|
|
<table class="min-w-full text-sm">
|
|
<thead>
|
|
<tr class="text-left border-b border-gray-200 dark:border-gray-800">
|
|
<th class="py-2 pr-4 font-medium">Type</th>
|
|
<th class="py-2 pr-4 font-medium">Label</th>
|
|
<th class="py-2 pr-4 font-medium">Category</th>
|
|
<th class="py-2 pr-4 font-medium">Dependencies</th>
|
|
<th class="py-2 pr-4 font-medium">Restore</th>
|
|
<th class="py-2 pr-4 font-medium">Risk</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody class="divide-y divide-gray-200 dark:divide-gray-800">
|
|
@foreach ($foundationTypes as $row)
|
|
<tr>
|
|
<td class="py-2 pr-4">{{ $row['type'] ?? '' }}</td>
|
|
<td class="py-2 pr-4">{{ $row['label'] ?? '' }}</td>
|
|
<td class="py-2 pr-4">{{ $row['category'] ?? '' }}</td>
|
|
<td class="py-2 pr-4">{{ ($row['dependencies'] ?? false) ? '✅' : '—' }}</td>
|
|
<td class="py-2 pr-4">{{ $row['restore'] ?? 'enabled' }}</td>
|
|
<td class="py-2 pr-4">{{ $row['risk'] ?? 'normal' }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</x-filament::section>
|
|
</x-filament::page>
|