6 <div class="container">
10 @if(count($books) > 0)
11 @foreach($books as $book)
12 @include('books/list-item', ['book' => $book])
16 <p class="text-muted">No books have been created.</p>
17 <a href="/books/create" class="text-pos"><i class="zmdi zmdi-edit"></i>Create one now</a>
20 <div class="col-md-4 col-md-offset-1">
21 <div class="margin-top large"> </div>
22 <h3>Recent Activity</h3>
23 @include('partials/activity-list', ['activity' => $activity])