13 lines
234 B
PHP
13 lines
234 B
PHP
|
@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
|