mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 23:01:29 +00:00
8 lines
210 B
PHP
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>
|