all.blade.php 688 B

1234567891011121314151617181920
  1. @extends('layout')
  2. @section('title', "Рецензии игры")
  3. @section('content')
  4. <div>
  5. <div style="display: flex; gap: 40%">
  6. <h1 style="text-decoration: underline">{{$game->title}}</h1>
  7. <form method="get" action="/public/games/reviews/insert" style="margin-top:30px"><button type="submit" name="button" value="{{$game->id}}">Добавить рецензию</button></form>
  8. </div>
  9. <div style="font-size: 16pt; margin-left: 30px; margin-bottom: 50px; margin-top: -10px">
  10. @foreach ($game->genre as $genre) {{$genre->title}}; @endforeach
  11. </div>
  12. </div>
  13. @each("games.reviews.review", $reviews, "review")
  14. @yield('action-button')
  15. @endsection