Files
sccs_laravel/resources/views/vendor/jetstream/components/action-message.blade.php
2025-11-04 16:23:40 +05:00

11 lines
456 B
PHP

@props(['on'])
<div class="alert alert-success" role="alert" x-data="{ shown: false, timeout: null }"
x-init="@this.on('{{ $on }}', () => { clearTimeout(timeout); shown = true; timeout = setTimeout(() => { shown = false }, 2000); })"
x-show.transition.opacity.out.duration.1500ms="shown" style="display: none;"
{{ $attributes->merge(['class' => 'small']) }}>
<div class="alert-body">
{{ $slot->isEmpty() ? 'Saved.' : $slot }}
</div>
</div>