Can I save Objects, Object Collections in a Laravel 5 Session? Can I save Objects, Object Collections in a Laravel 5 Session? laravel laravel

Can I save Objects, Object Collections in a Laravel 5 Session?


You could always store the JSON representation of the object you tried to store.

However, I've heard it's generally a good idea not to store large things in the Session, is there anyway you could manage by storing something else? If you are storing an object from the DB, you could store the Id and recover the object with a query.