Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fluid debugging - output all variables

I try to output all variables from my view like this:

<f:debug title="all"> {_all} </f:debug>

But I only get this output:

enter image description here

I used to get an array which I can open and inspect deeper.

Why does it render like this?

like image 540
Black Avatar asked Dec 11 '22 11:12

Black


1 Answers

Plz remove the spaces before and after {_all}. You should have:

<f:debug title="all">{_all}</f:debug>
like image 97
Krystian Szymukowicz Avatar answered Jan 05 '23 08:01

Krystian Szymukowicz