@extends('layouts.master') @section('title') شاشة قائمة العملاء @endsection @section('css') @endsection @section('page-header') @endsection @section('content')
@if (in_array(43, Session('accessRoles')))   اضافة عميل @endif
@foreach ($customers as $customer) @endforeach
# اسم العميل الإيميل رقم الهاتف العمر النقات الجنسية الدولة المحافظة صورة الملف الشخصي حالة الحساب العمليات
{{ $customer->id }} {{ $customer->name }} {{ $customer->email }} {{ $customer->phone_number }} {{ $customer->age }} {{ $customer->points }} {{ $customer->nationality }} {{ $customer->country }} {{ $customer->governorate }} @if ($customer->isVerified == 1) مفعل @else غير مفعل @endif
@endsection @section('js') @endsection