@extends('layouts.app') @section('title', 'ملف العميل') @section('page_title', 'الملف الشامل 360 — ' . $customer->name) @section('page_subtitle', 'كود العميل: ' . ($customer->code ?? '—')) @section('page_actions') @if (auth()->user()->hasPermission('calls.create')) تسجيل مكالمة @endif @endsection @section('content')
| الاسم | {{ $customer->name }} |
|---|---|
| الهاتف | {{ $customer->phone }} |
| هاتف إضافي | {{ $customer->alt_phone ?? '—' }} |
| البريد | {{ $customer->email ?? '—' }} |
| المدينة | {{ $customer->city ?? '—' }} |
| الجنسية | {{ $customer->nationality ?? '—' }} |
| التصنيف | @include('customers.partials.type-badge') |
| المصدر | {{ $customer->source ?? '—' }} |
| المسؤول | {{ $customer->owner?->name ?? '—' }} |
| الفريق | {{ $customer->team?->name ?? '—' }} |
| آخر تواصل | {{ $customer->last_contacted_at?->format('Y-m-d H:i') ?? '—' }} |