@extends('layouts.admin') @section('page-title', 'مدیریت مشتریان') @section('main')

مشتریان

مدیریت مشتریان و اطلاعات آنها

@forelse($customers as $customer) @empty @endforelse
مشتری موبایل کسب و کار دسته‌بندی وضعیت عملیات
{{ mb_substr($customer->first_name ?? 'C', 0, 1) }}

{{ $customer->full_name }}

@if($customer->national_code)

کد ملی: {{ $customer->national_code }}

@endif
{{ $customer->mobile }} {{ $customer->business_name ?? '—' }} @if($customer->category) {{ $customer->category->name }} @else @endif @if($customer->is_active) فعال @else غیرفعال @endif
@csrf @method('DELETE')
مشتری یافت نشد
@if($customers->hasPages())
{{ $customers->links() }}
@endif
@endsection