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

Books

@if(count($books) > 0) @foreach($books as $book)

{{$book->name}}

{{$book->description}}


@endforeach @else

No books have been created.

Create one now @endif
 

Recent Activity

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