Files
nexusphp/app/Filament/Widgets/UserStat.php

27 lines
533 B
PHP
Raw Normal View History

2022-06-28 13:33:18 +08:00
<?php
namespace App\Filament\Widgets;
use App\Filament\Custom\Widgets\StatTable;
use App\Repositories\DashboardRepository;
use Illuminate\Contracts\View\View;
use Nexus\Database\NexusDB;
class UserStat extends StatTable
{
protected static ?int $sort = 100;
protected function getHeader(): string
{
return nexus_trans('dashboard.user.page_title');
}
protected function getTableRows(): array
{
$dashboardRep = new DashboardRepository();
return $dashboardRep->statUsers();
}
}