TenantAtlas/apps/platform/resources/views/filament/widgets/provider-connections/provider-readiness-guidance.blade.php
ahmido d2876af95b feat: provider connections resolution guidance v1 (spec 353) (#424)
Implemented the first version of provider readiness resolution guidance. Added the ProviderReadinessResolutionAdapter, provider readiness guidance card, and updated EnvironmentRequiredPermissions, ProviderConnectionResource, and ListProviderConnections/ViewProviderConnection. Added tests and updated the design coverage matrix.

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #424
2026-06-04 22:41:04 +00:00

8 lines
297 B
PHP

@if (is_array($guidance ?? null) && $guidance !== [])
@include('filament.partials.provider-readiness-guidance-card', [
'guidance' => $guidance,
'inlinePrimaryAction' => $inlinePrimaryAction ?? false,
'primaryActionMethod' => $primaryActionMethod ?? null,
])
@endif