@extends('admin.layout.master') @section('title', "المستخدمين") @section('content')

المستخدمين

{{-- @csrf--}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('id_number')) {{ $errors->first('id_number') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
@if ($errors->has('city_id')) {{ $errors->first('city_id') }} @endif
@if ($errors->has('city_id')) {{ $errors->first('city_id') }} @endif
@if ($errors->has('date_from')) {{ $errors->first('date_from') }} @endif
@if ($errors->has('date_to')) {{ $errors->first('date_to') }} @endif
@if ($errors->has('wallet_from')) {{ $errors->first('wallet_from') }} @endif
@if ($errors->has('wallet_to')) {{ $errors->first('wallet_to') }} @endif
@if ($errors->has('rate_from')) {{ $errors->first('rate_from') }} @endif
@if ($errors->has('rate_to')) {{ $errors->first('rate_to') }} @endif
{{-- @include('admin.layout.message')--}}

المستخدمين

@foreach($rows as $row) @endforeach
# الإسم رقم الجوال البريدالالكترونى الرصيد التقييم الدولة الحالة التحكم
{{$i}} {{$row->fullname}} {{$row->mobile}} {{$row->email}} {{$row->wallet}} {{getUserRate($row->id, 'rate_captain')}} {{$row->country->name['ar']}} {{ ($row->status == 'active') ? "مفعل" : "غير مفعل" }}
@stop