TenantAtlas/apps/platform/resources/views/filament/widgets/provider-connections/provider-readiness-guidance.blade.php
Ahmed Darrazi ff0b588901
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 1m0s
feat: provider connections resolution guidance v1 (spec 353)
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.
2026-06-05 00:38:03 +02: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