@foreach($group['items'] as $routeName => $routeConfig)
@php
// Fix lỗi PHP bằng cách dùng Array thay vì match()
$colors = [
'GET' => 'bg-emerald-50 text-emerald-600 border-emerald-200',
'POST' => 'bg-blue-50 text-blue-600 border-blue-200',
'PUT' => 'bg-amber-50 text-amber-600 border-amber-200',
'PATCH' => 'bg-amber-50 text-amber-600 border-amber-200',
'DELETE' => 'bg-rose-50 text-rose-600 border-rose-200',
];
$methodKey = strtoupper($routeConfig['method']);
$methodColor = $colors[$methodKey] ?? 'bg-slate-50 text-slate-600 border-slate-200';
@endphp
@endforeach