Код: Выделить всё
@php use App\Enums\FlashStatuses; @endphp
@foreach(FlashStatuses::values() as $type)
@if(Session::has($type))
@php $color = FlashStatuses::from($type)->color(); @endphp
{{ __(ucfirst($type)) }}!
{{ Session::get($type) }}
d="M6 18L18 6M6 6l12 12">
@endif
@endforeach
@vite('resources/js/flash-message.js')
Код: Выделить всё
Код: Выделить всё
Success!
test
Я ожидал, что у меня будет флэш-сообщение с цветом, который был в HTML этого компонента. К сожалению, у меня этого не было.
Подробнее здесь: https://stackoverflow.com/questions/790 ... windcss-v3