@extends('layouts.admin') @section('title', 'داشبورد') @section('content')
people
کل کاربران
{{ number_format($stats['total_users']) }}
person
کاربران فعال
{{ number_format($stats['active_users']) }}
star
کاربران ویژه
{{ number_format($stats['total_subscriptions']) }}
payment
اشتراک‌های فعال
{{ number_format($stats['total_subscriptions']) }}

کاربران فعال

people_outline
تعداد کاربران فعال
{{ number_format($active_users_month) }}

آمار اشتراک‌ها

@foreach ($subscription_stats as $stat) @endforeach
نوع پلن تعداد
{{ $stat->plan_type }} {{ number_format($stat->count) }}

آخرین ۵ کاربر ثبت‌نام شده

@foreach ($latest_users as $user) @endforeach
ایمیل تاریخ عضویت وضعیت
{{ $user->email }} {{ $user->created_at->diffForHumans() }} @if($user->status == 'active') فعال @elseif($user->status == 'inactive') غیرفعال @elseif($user->status == 'banned') مسدود @else {{ $user->status }} @endif
@endsection @section('scripts') @endsection