@extends('base') @section('content')

Books

@if(count($books) > 0) @foreach($books as $book) @include('books/list-item', ['book' => $book])
@endforeach @else

No books have been created.

Create one now @endif
 

Recent Activity

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