コード例 #1
0
 /**
  * @param  Request $request
  * @return Response
  */
 public function history(Request $request)
 {
     return view('lots.history', ['history' => GameHistory::with('user', 'game', 'game.lot')->take(10)->get()]);
 }