Laravel dynamic page title in navbar-brand

前端 未结 2 433
不思量自难忘°
不思量自难忘° 2020-12-15 08:44

I have layouts.app.blade.php where I have my and tags and also the

2条回答
  •  粉色の甜心
    2020-12-15 09:11

    If this is your master page title below

    
    
        App Name - @yield('title')
    
    
        @section('sidebar')
            This is the master sidebar.
        @show
    
        
    @yield('content')

    then your page title can be changed in your blade page like below

    @extends('layouts.master')
    
    @section('title', 'Page Title')
    
    @section('sidebar')
    @parent
    
    

    This is appended to the master sidebar.

    @endsection @section('content')

    This is my body content.

    @endsection

    More information can be found here Laravel Docs

提交回复
热议问题