@if (count($logs) > 0) @php // Mapping log descriptions and status values to icons and labels $descriptionIcons = [ 'created' => ['bg-success', 'feather icon-plus-circle', 'Создан'], 'updated' => ['bg-primary', 'feather icon-refresh-ccw', 'Изменено'], ]; $statusLabels = [ 'processing' => 'В обработке', 'collected' => 'Собран', 'waiting_buyer' => 'Ожидает покупателя', 'in_way' => 'В пути', 'closed' => 'Закрыт', 'cancelled' => 'Отменен', 'replacement' => 'Замена', ]; $paymentStatuses = [ 'waiting' => 'Ожидается оплата', 'cancelled' => 'Отказано оплата', 'payed' => $order->payment_type == 'credit' ? 'Кредит одобрен' : 'Оплачено', 'cash' => 'Наличный расчет', 'review' => 'Кредит на рассмотрение', ]; @endphp

@lang('admin.logs.title')

@endif