- 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.
10 lines
204 B
PHP
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
|