all_game.blade.php 746 B

123456789101112131415161718192021222324
  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/comments/insert" style="margin-top:30px"><button type="submit" name="comment" 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. <div style="margin-left:50px">
  14. @each("comments.comment", $comments, "comment")
  15. </div>
  16. @yield('action-button')
  17. @endsection