TenantAtlas/apps/platform/resources/views/filament/widgets/managed-environment/admin-roles-summary.blade.php
ahmido 292d555eac refactor: consolidate internal tenant model naming (#355)
## Summary
- consolidate internal platform naming from `Tenant` to `Environment` / `ManagedEnvironment` across models, controllers, services, and Filament resources
- rename environment-scoped UI surfaces such as dashboards, chooser flows, navigation, and related widgets to match the updated environment-first domain language
- align middleware, onboarding/review lifecycle services, jobs, and route/context controllers with the new environment-scoped architecture

## Validation
- not rerun as part of this commit/push/PR request

## Notes
- branch is 1 commit ahead of `platform-dev`
- main commit: `refactor: consolidate internal tenant model naming`

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #355
2026-05-14 11:13:28 +00:00

63 lines
2.1 KiB
PHP

@php
/** @var ?\App\Models\ManagedEnvironment $tenant */
/** @var ?array $reportSummary */
/** @var ?string $lastScanAt */
/** @var int $highPrivilegeCount */
/** @var bool $canManage */
/** @var bool $canView */
/** @var ?string $viewReportUrl */
@endphp
<x-filament::section heading="Entra admin roles">
<x-slot name="afterHeader">
@if ($canView && $viewReportUrl)
<a
href="{{ $viewReportUrl }}"
class="text-sm font-medium text-primary-600 hover:text-primary-500 dark:text-primary-400 dark:hover:text-primary-300"
>
View latest report
</a>
@endif
</x-slot>
@if ($reportSummary === null)
<div class="text-sm text-gray-500 dark:text-gray-400">
No scan performed yet.
</div>
@else
<div class="space-y-3">
<div class="flex items-center justify-between gap-3">
<div class="text-sm text-gray-500 dark:text-gray-400">
Last scan
</div>
<div class="text-sm font-medium">
{{ $lastScanAt }}
</div>
</div>
<div class="flex items-center justify-between gap-3">
<div class="text-sm text-gray-500 dark:text-gray-400">
High-privilege assignments
</div>
<div class="text-sm font-medium {{ $highPrivilegeCount > 0 ? 'text-danger-600 dark:text-danger-400' : 'text-success-600 dark:text-success-400' }}">
{{ $highPrivilegeCount }}
</div>
</div>
</div>
@endif
@if ($canManage)
<div class="mt-4">
<x-filament::button
wire:click="scanNow"
size="sm"
color="primary"
wire:loading.attr="disabled"
>
<span wire:loading.remove wire:target="scanNow">Scan now</span>
<span wire:loading wire:target="scanNow">Scanning…</span>
</x-filament::button>
</div>
@endif
</x-filament::section>