@extends('admin.layouts.app') @section('title', 'جزئیات حواله') @section('content') @include('admin.partials.iran-plate', ['loadStylesOnly' => true]) @php $jalali = static fn ($value, $withTime = true) => $value ? \Morilog\Jalali\Jalalian::fromDateTime($value)->format($withTime ? 'Y/m/d H:i' : 'Y/m/d') : '-'; $enum = [ 'status' => ['issued' => 'صادر شده', 'in_transit' => 'در حال حمل', 'delivered' => 'تحویل شده', 'cancelled' => 'لغو شده'], 'state' => ['issued' => 'صادر شده', 'registered' => 'ثبتشده', 'cancelled' => 'لغو شده'], 'transport_type' => ['domestic' => 'داخلی', 'export' => 'صادرات', 'import' => 'واردات', 'transit' => 'ترانزیت'], 'cargo_kind' => ['general' => 'عمومی', 'dangerous' => 'خطرناک', 'perishable' => 'فاسدشدنی', 'oil' => 'نفتی'], 'service_type' => ['retail' => 'خرده بار', 'full_truck' => 'دربستی', 'combined' => 'ترکیبی'], 'oil_type' => ['oil' => 'نفتی', 'non_oil' => 'غیر نفتی'], ]; $label = static fn ($group, $value) => $value ? ($enum[$group][$value] ?? $value) : '-'; $sbk = static fn ($value) => $value ? ('SBK-' . ltrim((string) $value, '-')) : '-'; $driverInitial = static fn ($name) => $name ? mb_substr(trim($name), 0, 1) : '؟'; @endphp