كود العميل
{{ $customer->customer_code }}
اسم العميل
{{ $customer->name }}
الفرع
{{ method_exists($customer->branch, 'getTranslation')
? $customer->branch->getTranslation('name', app()->getLocale())
: (is_array($customer->branch->name)
? $customer->branch->name[app()->getLocale()] ?? ($customer->branch->name['en'] ?? '')
: $customer->branch->name) }}
تاريخ الإنشاء
{{ $customer->created_at }}
آخر تحديث
{{ $customer->updated_at }}