2
I have two Blade.php files and I’m not being able to see the content in the browser.
@extends('layouts.index')
@section('content')
@parent
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<p>Copyright © Your Blog 2016</p>
</div>
</div>
</div>
@stop
<footer>
@yield('content')
</footer>
Not so. Your template file should be separated from the content file. In the content you call extends templates.
– Diego Souza
I put so just to show issue Yield and extends
– Douglas William