@extends('layouts.master') @section('title', 'عرض عميل') @section('pages') {{ __('dashboard.home') }} @endsection @section('content')
عرض عميل
كود العميل
{{ $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 }}
@endsection