Search code examples
laravellaravel-bladedumpdd

Display Laravel's dd() results without die -> d(), dump() in blade


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


Solution

  • <?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.