Files
Nexora/resources/views/components/status-badge.blade.php

14 lines
411 B
PHP
Raw Normal View History

2025-04-23 00:14:33 +06:00
@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>