Use the dd helper:
{{ dd(get_defined_vars()) }}
Read more: https://laravel.com/docs/5.4/helpers#method-dd
Update (thx, @JoeCoder): you can further cutdown on the “useless” variables by doing:
{{ dd(get_defined_vars()['__data']) }}
Use the dd helper:
{{ dd(get_defined_vars()) }}
Read more: https://laravel.com/docs/5.4/helpers#method-dd
Update (thx, @JoeCoder): you can further cutdown on the “useless” variables by doing:
{{ dd(get_defined_vars()['__data']) }}