Files
newznab-tmux-NNTmux/resources/views/components/mail/alert.blade.php
T
2026-05-07 14:03:21 +02:00

8 lines
210 B
PHP

@props([
'type' => 'info',
])
@php
$typeClass = in_array($type, ['info', 'success', 'warning', 'danger'], true) ? $type : 'info';
@endphp
<div class="alert-box alert-{{ $typeClass }}">{{ $slot }}</div>