コード例 #1
0
ファイル: GameController.php プロジェクト: kodumen/mbeat
 /**
  * Show the game.
  *
  * @param $id
  * @param $difficulty
  * @return string
  */
 public function play($id, $difficulty)
 {
     $song = Song::getInfo($id);
     return view('game.play', ['id' => $id, 'difficulty' => $difficulty, 'song' => $song]);
 }
コード例 #2
0
ファイル: SongController.php プロジェクト: kodumen/mbeat
 /**
  * Show the song info
  *
  * @param $id
  * @return \Illuminate\View\View
  */
 public function info($id)
 {
     $song = Song::getInfo($id);
     return view('song.info', ['song' => $song]);
 }