@extends('layouts.master') @section('title') Show book @stop {{-- This `head` section will be yielded right before the closing tag. Use it to add specific things that *this* View needs in the head, such as a page specific styesheets. --}} @section('head') @stop @section('content') @if($title)

Show book: {{ $title }}

@else

No book chosen

@endif @stop {{-- This `body` section will be yielded right before the closing tag. Use it to add specific things that *this* View needs at the end of the body, such as a page specific JavaScript files. --}} @section('body') @stop