@extends('layouts.client') @section('page_title', ($isRtl ? 'تفاصيل الطلب' : 'Request Details') . ' #' . $application->id) @section('content') @php $statusColors = [ 'new' => ['#e0e7ff', '#4338ca'], 'reviewing' => ['#fef3c7', '#a16207'], 'approved' => ['#dcfce7', '#166534'], 'rejected' => ['#fee2e2', '#991b1b'], 'completed' => ['#fee2e2', '#b31419'], ]; $statusLabelsAr = [ 'new' => 'جديد', 'reviewing' => 'قيد المراجعة', 'approved' => 'موافق', 'rejected' => 'مرفوض', 'completed' => 'مكتمل', ]; [$bg, $fg] = $statusColors[$application->status] ?? ['#f3f4f6', '#4b5563']; $label = $isRtl ? ($statusLabelsAr[$application->status] ?? $application->status) : ucfirst($application->status); @endphp