I have two blade.php files and I can not 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>