mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
34 lines
999 B
PHP
34 lines
999 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\ServerGroup;
|
|
use App\Models\Server;
|
|
use App\Models\Plan;
|
|
use App\Models\User;
|
|
use App\Models\Ticket;
|
|
use App\Models\Order;
|
|
use Illuminate\Support\Facades\Redis;
|
|
|
|
class StatController extends Controller
|
|
{
|
|
public function index (Request $request) {
|
|
return response([
|
|
'data' => [
|
|
'month_income' => Redis::get('month_income'),
|
|
'month_register_total' => Redis::get('month_register_total'),
|
|
'server_offline_total' => Server::where('last_check_at', '<', time() - 300)
|
|
->count(),
|
|
'ticket_pendding_total' => Ticket::where('status', 0)
|
|
->count(),
|
|
'commission_pendding_total' => Order::where('commission_status', 0)
|
|
->where('status', 3)
|
|
->count(),
|
|
|
|
]
|
|
]);
|
|
}
|
|
}
|