Is there a $GLOBALS-like equivalent in Laravel? I can use Config::set () and Config::get () and that achieves what I want, but that doesn't seem "correct" since the values I'm storing aren't configuration related.
I don't want the values to persist in the session, nor do I want to use a cache like Redis. I just want to be able to store a value somewhere and then later down the line, be able to retrieve it, like a registry.
Does Laravel do anything like this?
Thanks!