List all registered variables inside a Laravel view

前端 未结 5 1462
故里飘歌
故里飘歌 2020-12-12 19:09

I am using Laravel 5. I would like to know which are all variables passed to a view inside the view itself.

Since all variables are in the view scope I thought I cou

5条回答
  •  不知归路
    2020-12-12 19:45

    Use Laravel Helper function DD

    Use DD in blade view:

    {{ dd($__data) }} OR

    Above both methods works in blade view.

提交回复
热议问题