@extends('layouts.app') @section('title', 'Müşteriler') @section('eyebrow', 'CRM') @section('heading', 'Müşteriler') @section('top-actions') Randevu ile Müşteri Ekle @endsection @section('content')
MÜŞTERİ HAFIZASI

{{ $customers->total() }} müşteri

İletişim, araç ve hizmet geçmişini görüntüleyin.

@forelse($customers as $customer)
{{ str($customer->name)->explode(' ')->map(fn($p) => mb_substr($p,0,1))->take(2)->join('') }}
{{ $customer->name }}{{ $customer->phone }}{{ $customer->email ?: collect([$customer->district,$customer->city])->filter()->join(' / ') ?: 'Konum bilgisi yok' }}
{{ $customer->vehicles_count }}Araç{{ $customer->appointments_count }}Randevu
@empty
Henüz müşteri yok
@endforelse
@endsection