show.blade.php 239 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 @extends('base') @section('content') <a href="{{$page->getUrl() . '/edit'}}" class="button primary float right">Edit Page</a> <h1>{{$page->name}}</h1> <div class="page-content"> {!! $page->html !!} </div> @stop