@extends('agency.layouts.app') @section('title', 'Müşteriler') @section('page_title', 'Müşteri Yönetimi') @push('styles') @endpush @section('content')
| MÜŞTERİ | İLETİŞİM | TİP | DURUM | ÖNCELİK | YOLCULAR | SADAKAT | @foreach($listableFields as $field){{ strtoupper($field->label) }} | @endforeachTEMSİLCİ | KAYIT | İŞLEMLER | |
|---|---|---|---|---|---|---|---|---|---|---|---|
|
{{ $customer->initials }}
{{ $customer->full_name }}
@if($customer->blacklisted)
@endif
@if($customer->company_name)
{{ $customer->company_name }}
@endif
|
@if($customer->email)
{{ $customer->email }}
@endif
@if($customer->phone)
{{ $customer->phone }}
@endif
|
{{ $customer->customer_type === 'corporate' ? '🏢 Şirket' : '👤 Kişi' }} | {{ $customer->status_label }} | {{ $customer->priority_label }} | {{ $customer->passengers_count }} | @if($customer->loyalty_tier) {{ $customer->loyalty_tier_label }} @else — @endif | @foreach($listableFields as $field)@php $val = $customer->getCustomFieldValue($field->field_key); @endphp @if($val !== null && $val !== '') {{ $field->formatValue($val) }} @else — @endif | @endforeach
@if($customer->assignedAgent)
|
{{ $customer->created_at->format('d.m.Y') }} |