Laravel framework- Why aren\'t I able to use Auth::user(), (to see if user has been logged in) in the controller of the laravel project. Is the Session not connected to the cont
You need to use the Auth facade in the controller;
add this line just before class definition.
use Auth;