6 <div class="container">
10 @if(count($books) > 0)
11 @foreach($books as $book)
13 <h3><a href="{{$book->getUrl()}}">{{$book->name}}</a></h3>
14 <p class="text-muted">{{$book->description}}</p>
19 <p class="text-muted">No books have been created.</p>
20 <a href="/books/create" class="text-pos"><i class="zmdi zmdi-edit"></i>Create one now</a>
23 <div class="col-md-4 col-md-offset-1">
24 <div class="margin-top large"> </div>
25 <h3>Recent Activity</h3>
26 @include('partials/activity-list', ['activity' => $activity])