mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
17 lines
450 B
PHP
17 lines
450 B
PHP
@extends('base')
|
|
|
|
@section('content')
|
|
|
|
<h2>{{$book->name}}</h2>
|
|
<p class="text-muted">{{$book->description}}</p>
|
|
<a href="{{$book->getUrl() . '/page/create'}}">+ New Page</a>
|
|
|
|
<h4>Pages:</h4>
|
|
@if(count($book->pages) > 0)
|
|
@foreach($book->pages as $page)
|
|
<a href="{{$page->getUrl()}}">{{$page->name}}</a><br>
|
|
@endforeach
|
|
@else
|
|
<p class="text-muted">This book has no pages</p>
|
|
@endif
|
|
@stop |