Most certainly is!
Auth::user()->username;
Auth::user()->userId;
Auth::user()->password;
So you would do in a view:
<h2>Welcome back {{{ Auth::user()->username }}}!</h2>
More reading :
http://laravel.com/docs/security
and control F (find) "Accessing The Logged In User" and it will show some more cool stuff!
Good luck!
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community