@extends('layouts.admin')
@section('page-title', 'اطلاعات مشترکین')
@section('content')
| نوع مشترک |
نام مشترک |
شناسه/شماره ملی |
شماره همراه |
وضعیت |
عملیات |
@forelse($customers as $customer)
|
@if($customer->type === 'natural')
حقیقی
@elseif($customer->type === 'legal')
حقوقی
@else
—
@endif
|
{{ $customer->company_name ?? $customer->full_name ?? '—' }}
|
{{ $customer->national_id ?? $customer->company_id ?? '—' }}
|
{{ $customer->phone ?? '—' }}
|
|
|
@empty
|
@if(request('search'))
هیچ مشترکی با این مشخصات یافت نشد.
@else
هیچ مشترکی یافت نشد.
@endif
|
@endforelse
@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
@empty
@if(request('search'))
هیچ مشترکی با این مشخصات یافت نشد.
@else
هیچ مشترکی یافت نشد.
@endif
@endforelse
{{ $customers->appends(request()->query())->links('pagination.custom-tailwind') }}
@endsection