@php $statusOptions = App\Models\Sponsor::STATUS_NAMES; $currentStatus = $row->status ?? 0; $currentLabel = $statusOptions[$currentStatus] ?? 'Pending'; // Define colors for each status - matching your design theme $statusColors = [ 0 => '#F59E0B', // Pending - Amber/Orange 1 => '#10B981', // Approved - Green 2 => '#EF4444', // Rejected - Red ]; $currentColor = $statusColors[$currentStatus] ?? '#F59E0B'; $statusUrl = route('admin.users.sponsors.update-status', $row->id); @endphp