all.blade.php 442 B

123456789101112131415
  1. @extends('layout')
  2. @section('title', "Список игр")
  3. @section('content')
  4. <div style="display: flex; gap: 40%">
  5. <h1 style="text-decoration: underline">Все игры:</h1>
  6. <form method="get" action="/public/games/insert" style="margin-top:30px"><button type="submit" name="button" value="new">Добавить игру</button></form>
  7. </div>
  8. @each("games.game", $games, "game")
  9. @yield('action-button')
  10. @endsection