2019-12-18 18:08:52 +08:00
|
|
|
<?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;
|
2020-01-12 01:27:36 +08:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
2019-12-18 18:08:52 +08:00
|
|
|
|
2019-12-23 18:46:37 +08:00
|
|
|
class StatController extends Controller
|
2019-12-18 18:08:52 +08:00
|
|
|
{
|
2020-01-11 13:36:52 +08:00
|
|
|
public function getOverride(Request $request)
|
|
|
|
{
|
2019-12-18 18:08:52 +08:00
|
|
|
return response([
|
|
|
|
'data' => [
|
2020-01-20 13:57:30 +08:00
|
|
|
'month_income' => Order::where('created_at', '>=', strtotime(date('Y-m-1')))
|
|
|
|
->where('created_at', '<', time())
|
|
|
|
->where('status', '3')
|
|
|
|
->sum('total_amount'),
|
|
|
|
'month_register_total' => User::where('created_at', '>=', strtotime(date('Y-m-1')))
|
|
|
|
->where('created_at', '<', time())
|
|
|
|
->count(),
|
2019-12-18 18:08:52 +08:00
|
|
|
'ticket_pendding_total' => Ticket::where('status', 0)
|
|
|
|
->count(),
|
|
|
|
'commission_pendding_total' => Order::where('commission_status', 0)
|
2019-12-18 18:14:26 +08:00
|
|
|
->where('invite_user_id', '!=', NULL)
|
|
|
|
->where('status', 3)
|
2019-12-18 18:08:52 +08:00
|
|
|
->count(),
|
|
|
|
]
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|