Skip to content
Advertisement

Is it possible to store an array as flash data in Laravel?

I have been looking around for a way of doing this. I know it is possible to store an array in the session with the following: Session::push('user.teams', 'developers');

Is it possible to do the same but with flash data? Something like Session::flashpush('user.teams', array('developers', 'designers')); would be great.

The usecase for me at this moment is primarily the following:

Session::flash('flash_message', $validator->messages());

Advertisement

Answer

As far as I know, you can do it. I’ve checked this just in case:

JavaScript

It works. Also you can serialize an array or object as Christopher Morrissey just commented

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement