@extends('layouts.app') @section('title', 'إدارة العملاء') @section('content')
قائمة العملاء
@if(isset($customers) && count($customers) > 0) @foreach($customers as $customer) @endforeach @else @endif
# الاسم رقم الهاتف البريد الإلكتروني نوع الهوية رقم الهوية الجنسية الحالة الإجراءات
{{ $loop->iteration }} {{ $customer->name }} {{ $customer->phone }} {{ $customer->email }} {{ $customer->id_type }} {{ $customer->id_number }} {{ $customer->nationality }} @if($customer->is_active) نشط @else غير نشط @endif
لا يوجد عملاء مسجلين
@if(isset($customers)) @foreach($customers as $customer) @endforeach @endif @endsection