@extends('layouts.scaffold')

@section('main')

<h1>Show {{Model}}</h1>

<p>{{ link_to_route('{{models}}.index', 'Return to all {{models}}') }}</p>

<table class="table table-striped table-bordered">
	<thead>
		<tr>
			{{headings}}
		</tr>
	</thead>

	<tbody>
		<tr>
			{{fields}}
		</tr>
	</tbody>
</table>

@stop
