7 lines
170 B
PHP
7 lines
170 B
PHP
|
@extends('_layouts.main')
|
||
|
|
||
|
@section('body')
|
||
|
<h1>{{ $page->title }}</h1>
|
||
|
<small>{{ $page->dateTranslated($page->date) }}</small>
|
||
|
@yield('content')
|
||
|
@endsection
|