14 lines
411 B
PHP
14 lines
411 B
PHP
@props(['status'])
|
|
|
|
@php
|
|
$colors = [
|
|
'pending' => 'bg-yellow-100 text-yellow-800',
|
|
'approved' => 'bg-green-100 text-green-800',
|
|
'rejected' => 'bg-red-100 text-red-800',
|
|
'in_review' => 'bg-blue-100 text-blue-800'
|
|
];
|
|
@endphp
|
|
|
|
<span class="inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium {{ $colors[$status] }}">
|
|
{{ strtoupper($status) }}
|
|
</span> |