@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') ?? '—' }}
التفضيلات السياحية
{!! nl2br(e($customer->preferences ?? 'لا توجد تفضيلات مسجلة')) !!}
ملاحظات
{!! nl2br(e($customer->notes ?? '—')) !!}
@include('customers.partials.tab-calls') @include('customers.partials.tab-tickets') @include('customers.partials.tab-followups')
@endsection