@extends('admin.layouts.app') @section('title', 'إدارة النقاط') @section('content')

إدارة النقاط

إجمالي المستخدمين
{{ $users->total() }}
قائمة المستخدمين ونقاطهم
@if($users->count() > 0)
@foreach($users as $index => $user) @endforeach
# المستخدم البريد الإلكتروني إجمالي النقاط النقاط المتاحة النقاط المستخدمة آخر نشاط الإجراءات
{{ $users->firstItem() + $index }}
{{ substr($user->name, 0, 1) }}
{{ $user->name }}
ID: {{ $user->id }}
{{ $user->email }} {{ number_format($user->points->points ?? 0) }} {{ number_format($user->points->available_points ?? 0) }} {{ number_format($user->points->used_points ?? 0) }} {{ $user->points->updated_at ? $user->points->updated_at->diffForHumans() : 'لم يتم تسجيل نشاط' }}
{{ $users->links() }}
@else
لا توجد مستخدمين
@endif
@endsection @push('scripts') @endpush