@extends('layouts.admin') @section('page-title', 'اطلاعات مشترکین') @section('content')

لیست تمام مشترکین تیوان

@forelse($customers as $customer)
{{ $customer->company_name ?? $customer->full_name ?? '—' }} {{ $customer->national_id ?? $customer->company_id ?? '—' }} {{ $customer->phone ?? '—' }} @if($customer->type === 'natural') حقیقی @elseif($customer->type === 'legal') حقوقی @else @endif
@csrf @method('PATCH')
@empty
@if(request('search')) هیچ مشترکی با این مشخصات یافت نشد. @else هیچ مشترکی یافت نشد. @endif
@endforelse
{{ $customers->appends(request()->query())->links('pagination.custom-tailwind') }}
@endsection