11/5/2022

This commit is contained in:
Nguyễn Tiến Dũng
2022-05-11 21:09:39 +07:00
parent 96e0513959
commit 3d31201a05
117 changed files with 38921 additions and 595 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace App\Http\Controllers\dgaAdmin;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\Models\Setting;
use App\Models\HistoryPlay;
class HistoryController extends Controller
{
public function historyPlay($game) {
$setting = Setting::first();
$history = HistoryPlay::where('game', $game)->limit(500)->get();
return view('dgaAdmin.history', compact('setting', 'history'));
}
}