@extends('admin.layout.master') @section('title', "رصيد الكباتن") @section('content')

رصيد الكباتن

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{-- @csrf--}}
@if ($errors->has('date_from')) {{ $errors->first('date_from') }} @endif
@if ($errors->has('date_to')) {{ $errors->first('date_to') }} @endif

{{-- @include('admin.layout.message')--}}

المستخدمين

@foreach($rows as $row) @endforeach
# رقم العضو الإسم رقم الجوال المحفظة تاريخ الاضافة تاريخ الخصم عدد العمليات التحكم
{{$i}} {{$row->id}} {{$row->fullname}} {{$row->mobile}} {{$row->wallet}} {{$row->created_at}} {{$row->updated_at}} {{$row->wallet_histories->count()}}
@stop