Setting Bootstrap navbar active class in Laravel 5

前端 未结 13 2058
温柔的废话
温柔的废话 2020-12-23 16:34

I\'ve been wondering around looking for solutions, but can\'t really understand especially when creating helpers. I\'m new in Laravel and I want a simple or if not a detaile

13条回答
  •  不思量自难忘°
    2020-12-23 16:44

    Set a section on your blade file (let home.blade.php) like

    @section('Home', 'my-active-class')
    

    And set a section on your another blade file (let about.blade.php) like

    @section('About', 'my-active-class')
    

    and yield this section on app.blade.php (Suppose you are extending from app.blade.php)

    ...
    
  • Home
  • About
  • ...

提交回复
热议问题