raw newGame.php + route for it

This commit is contained in:
anon 2022-11-02 21:07:39 +01:00
parent 812018b37d
commit 5d16a2d3a5
2 changed files with 21 additions and 0 deletions
picquiz
resources/views/game
routes

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<!--
Creation Date: $(date)
-->
<head>
<title>Új játék</title>
<meta charset="utf-8">
</head>
<body>
<script>
</script>
</body>
</html>

@ -49,3 +49,10 @@ Route::post('/feedback/new', [FeedbackController::class, 'store']);
//Route to feedback updateRead
Route::put('/feedback/all/{id}', [FeedbackController::class, 'update']);
//--------- Game routes --------------------------------------------
Route::get('/play', function(){ return view('game/newGame'); });