## Summary - move the Laravel application into `apps/platform` and keep the repository root for orchestration, docs, and tooling - update the local command model, Sail/Docker wiring, runtime paths, and ignore rules around the new platform location - add relocation quickstart/contracts plus focused smoke coverage for bootstrap, command model, routes, and runtime behavior ## Validation - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/PlatformRelocation` - integrated browser smoke validated `/up`, `/`, `/admin`, `/admin/choose-workspace`, and tenant route semantics for `200`, `403`, and `404` ## Remaining Rollout Checks - validate Dokploy build context and working-directory assumptions against the new `apps/platform` layout - confirm web, queue, and scheduler processes all start from the expected working directory in staging/production - verify no legacy volume mounts or asset-publish paths still point at the old root-level `public/` or `storage/` locations Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #213
63 lines
2.1 KiB
PHP
63 lines
2.1 KiB
PHP
@php
|
|
/** @var ?\App\Models\Tenant $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>
|