11 lines
354 B
PHP
11 lines
354 B
PHP
@props(['status'])
|
|
@php
|
|
$classes = match($status) {
|
|
'published' => 'bg-green-100 text-green-800',
|
|
'scheduled' => 'bg-yellow-100 text-yellow-800',
|
|
default => 'bg-gray-100 text-gray-600',
|
|
};
|
|
@endphp
|
|
<span class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium {{ $classes }}">
|
|
{{ $status }}
|
|
</span>
|