author.blade.php 822 B

12345678910111213141516171819202122232425262728293031323334
  1. @extends("layouts.app")
  2. @section("content")
  3. <h1>{{$author->name}}</h1>
  4. <p>
  5. {{$author->description ?? "-- Описание автора отсутствует --"}}
  6. </p>
  7. <p>
  8. <a href="/author/{{ $author->id }}/edit">Редактировать</a> | <a href="/author/{{ $author->id }}/delete">Удалить</a>
  9. </p>
  10. <h3>Книги автора</h3>
  11. <table>
  12. <tr>
  13. <th>Название</th>
  14. <th>ISBN</th>
  15. <th>Год</th>
  16. <th>Страниц</th>
  17. </tr>
  18. @foreach ($author->books as $row)
  19. <tr>
  20. <td><a href="/book/{{$row->id}}">{{$row->name}}</a></td>
  21. <td>{{$row->isbn}}</td>
  22. <td>{{$row->year}}</td>
  23. <td>{{$row->pagecount}}</td>
  24. </tr>
  25. @endforeach
  26. </table>
  27. <p>
  28. @include("include.comments", [
  29. "comment_form_target" => "/author/$author->id/comment",
  30. "comments" => $author->comments
  31. ])
  32. </p>
  33. @endsection