Laravel version 5.2.36. Homestead do not use.
File test.blade.php
@extends('app') @section('asd') asd @stop File app.blade.php
@yield('asd') Controller
public function index() { return view('test.test') } When viewing the page I expect to see:
asd
And I see the output of the template code:
@extends ('app')
@section ('asd')
asd
@stop
Why it happens?