templates for self-hosting game jams (or any other kind of jam tbh)
at main 365 B view raw
1@props([ 2 'type' => null, 3 'message' => null, 4]) 5 6@php($class = match ($type) { 7 'success' => 'text-green-50 bg-green-400', 8 'caution' => 'text-yellow-50 bg-yellow-400', 9 'warning' => 'text-red-50 bg-red-400', 10 default => 'text-indigo-50 bg-indigo-400', 11}) 12 13<div {{ $attributes->merge(['class' => "px-2 py-1 {$class}"]) }}> 14 {!! $message ?? $slot !!} 15</div>