bookstack/resources/views/books/show.blade.php

7 lines
126 B
PHP
Raw Normal View History

2015-07-13 03:01:42 +08:00
@extends('base')
@section('content')
<h2>{{$book->name}}</h2>
<p class="text-muted">{{$book->description}}</p>
@stop