I have these three click patterns
In my controller, I call up the control panel as follows:
View::make('layouts.dashboard');
master.blade.php
<?= stylesheet_link_tag() ?>
<?= javascript_include_tag() ?>
<html>
<body class="fixed">
<div class="wrapper">
<div class="leftside">
@yield('leftside', 'left-side content')
</div>
<div class="rightside">
@yield('rightside', 'right-side content')
</div>
</div>
</body>
dashboard.blade.php
@extends('layouts.master')
@section('leftside')
@yield('sidebar', 'sidebar content')
@stop
sidebar.blade.php
@extends('layouts.dashboard')
@section('sidebar')
aaa
@stop
The dasbhoard blade is correctly displayed in the main blade, but the side panel does not want to show . Does anyone know what I'm doing wrong?
Thanks so much for any help :)
source
share