@extends('base') @section('content')
@if($currentUser->can('book-create')) Add new book @endif

Books

@foreach($books as $book)

{{$book->name}}

{{$book->description}}


@endforeach
@stop