I want to display the content of my session with the same style that the dd() function.
I try to do this :
<div>
{!! dump(session()->all()) !!}
</div>
And i get this error :
Facade\Ignition\Exceptions\ViewException
Array to string conversion
I don't understand why, because dump() should be able to display an array, no ?
How can i manage this ? Thanks
dump and die
. This should be used for debugging not to display results – Maggi