singleloginsystem/resources/views/components/auth-session-status.blade.php
= 57f0a4590c Feat: Add comprehensive support for SAML SSO integration
- Introduced `ddev` configuration for Laravel-based SAML SSO setup.
- Added detailed technical specifications for SAML 2.0 integration, including endpoints, flows, and cryptographic signing.
- Created extensive unit tests to validate `SamlIdpController` and `SamlIdpService` functionalities.
- Enhanced metadata generation, SAML request parsing, and cryptographic signing of responses.
- Implemented models, services, and tests to standardize IdP interactions with Service Providers.
2026-06-01 11:04:16 +00:00

10 lines
204 B
PHP

@props([
'status',
])
@if ($status)
<x-mary-alert {{$attributes->twMerge(['class' => 'alert-soft alert-success'])}}>
{!! str_replace('\n', '<br>', $status) !!}
</x-mary-alert>
@endif