is there a way to achieve this:
Master.blade.php
<html>
<body>
Master
@yield('body')
</body>
</html>
subMaster.blade.php
@extends('Master')
@section('body')
subMaster
@yield('body')
@stop
subsubMaster.blade.php
@extends('subMaster')
@section('body')
subsubMaster
@stop
I would make return View::make('subsubMaster');
the desired output should be:
<html>
<body>
Master
subMaster
subsubMaster
</body>
</html>
the real output is:
<html>
<body>
Master
subMaster
</body>
</html>
any way to make this 3 level view inheritance?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community