@extends("layouts.app") @section("content")

{{$author->name}}

Описание автора:
{{$author->description ?? "N/A"}}

Редактировать | Удалить

Книги автора:
@foreach ($author->books as $row) @endforeach
Название ISBN Год Страниц
{{$row->name}} {{$row->isbn}} {{$row->year}} {{$row->pagecount}}

Добавить комментарий:
@include("include.comment_form", ["comment_form_target" => "/author/$author->id/comment"])

Комментарии:

@include("include.comments", ["comments" => $author->comments])

@endsection