E
E
Emil Rakhmatullin2018-10-08 15:35:48
Laravel
Emil Rakhmatullin, 2018-10-08 15:35:48

Why header is not displayed?

Files:

  • posts
  • layout.blade.php
  • index.blade.php
layout.blade.php file:
@section('header')
Содержимое header'a
@endsection

Index.blade.php file:
@extends('layout')
@yield('header')
<!--Содержимое страницы-->

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vladimir Letyagin, 2018-10-08
@Emchik

You messed up the content loading logic a bit.
In layout.blade.php you need
A in index.blade.php

@extends('layout')
@section('header')
Содержимое header'a
@endsection

This will help you understand it better

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question