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
<?php dump(session()->all()) ?>
This is how you can display array in blade.
The { }
are used to echo
results (simple strings, integers etc etc) but as you know not suitable for arrays.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With