5 <div class="container">
10 @foreach($books as $book)
11 @include('books/list-item', ['book' => $book])
14 @if(count($books) === 10)
15 <a href="/books">View all books »</a>
18 <p class="text-muted">No books have been created.</p>
19 <a href="/books/create" class="text-pos"><i class="zmdi zmdi-edit"></i>Create one now</a>
22 <div class="col-md-4 col-md-offset-1">
23 <div class="margin-top large"> </div>
24 <h3>Recent Activity</h3>
25 @include('partials/activity-list', ['activity' => $activity])