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