@extends("layouts.app")
@section("content")
{{$author->name}}
Описание автора:
{{$author->description ?? "N/A"}}
Редактировать | Удалить
Книги автора:
Название |
ISBN |
Год |
Страниц |
@foreach ($author->books as $row)
{{$row->name}} |
{{$row->isbn}} |
{{$row->year}} |
{{$row->pagecount}} |
@endforeach
Добавить комментарий:
@include("include.comment_form", ["comment_form_target" => "/author/$author->id/comment"])
Комментарии:
@include("include.comments", ["comments" => $author->comments])
@endsection