@if (! app()->environment('production'))
@foreach (['Root', 'Admin', 'User'] as $role) @php $color = match ($role) { 'Root' => 'bg-red-600', 'Admin' => 'bg-yellow-600', 'User' => 'bg-green-600', default => 'bg-primary-600', }; @endphp @endforeach
@endif