@extends('admin.layouts.app') @section('title', 'إدارة النقاط') @section('content')
| # | المستخدم | البريد الإلكتروني | إجمالي النقاط | النقاط المتاحة | النقاط المستخدمة | آخر نشاط | الإجراءات |
|---|---|---|---|---|---|---|---|
| {{ $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() : 'لم يتم تسجيل نشاط' }} |
|