laravel 5.4 how to make page title with dynamic

后端 未结 3 1857
一生所求
一生所求 2021-02-14 05:02

ihave a route to get artists initial letter.

this is my route

Route::get(\'/artists/{letter}\', \'HomeController@showArtist\')->where(\'letter\', \'[         


        
3条回答
  •  -上瘾入骨i
    2021-02-14 06:07

    If this is your master page title below

    
            App Name - @yield('title')
        
    

    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

提交回复
热议问题