I'm currently creating an app that has Laravel as it's backend. Laravel just functions as an API and I don't have any need for sessions, however I am still using functions like Auth::attempt().
How do I make sure that Laravel does not start a session?
Try setting the session driver to "array"
This will cause the session functions to just store their data in an array rather than in the actual session.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community