@extends('base') @section('content')
{{ $user->name }}

{{ $user->name }}

User for {{ $user->created_at->diffForHumans(null, true) }}

Created Content
{{ $assetCounts['books'] }} {{ str_plural('Book', $assetCounts['books']) }}
{{ $assetCounts['chapters'] }} {{ str_plural('Chapter', $assetCounts['chapters']) }}
{{ $assetCounts['pages'] }} {{ str_plural('Page', $assetCounts['pages']) }}

Recently Created Pages

@if (count($recentlyCreated['pages']) > 0) @include('partials/entity-list', ['entities' => $recentlyCreated['pages']]) @else

{{ $user->name }} has not created any pages

@endif

Recently Created Chapters

@if (count($recentlyCreated['chapters']) > 0) @include('partials/entity-list', ['entities' => $recentlyCreated['chapters']]) @else

{{ $user->name }} has not created any chapters

@endif

Recently Created Books

@if (count($recentlyCreated['books']) > 0) @include('partials/entity-list', ['entities' => $recentlyCreated['books']]) @else

{{ $user->name }} has not created any books

@endif

Recent Activity

@include('partials/activity-list', ['activity' => $activity])
@stop