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
Use Laravel Helper function DD
DD
Use DD in blade view:
{{ dd($__data) }} OR
{{ dd($__data) }}
Above both methods works in blade view.