@extends('admin.layout.master') @section('title', "العمـــــــلاء") @section('content')

العمـــــــلاء

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('mobile_number')) {{ $errors->first('mobile_number') }} @endif
@if ($errors->has('is_verified')) {{ $errors->first('is_verified') }} @endif
@if ($errors->has('date_from')) {{ $errors->first('date_from') }} @endif
@if ($errors->has('date_to')) {{ $errors->first('date_to') }} @endif
{{-- --}} @foreach($rows as $row) {{-- --}} @endforeach
# إسم المستخدمالبريد الألكترونيرقم الجوال عدد الاعلانات المتابعين الاعلانات الحالة التحكم
{{$i}} {{$row->name}}{{$row->email}}{{$row->mobile_number}} {{\App\Models\Ad::where('user_id',$row->id)->count()}} {{$row->followers_count}} الاعلانات {{$row->is_verified =='1' ? "مفعل":"غير مفعل"}}
@stop