webapp/resources/views/home.blade.php

13 lines
234 B
PHP
Raw Normal View History

2018-04-09 21:38:31 +02:00
@extends('layouts.app')
@section('title', 'Page Title')
@section('sidebar')
@parent
<p>This is appended to the master sidebar.</p>
@endsection
@section('content')
<p>This is my body content.</p>
@endsection