Probably best to extend / implement your own auth driver. There's a couple of good articles on the subject...
http://www.karlvalentin.de/1903/write-your-own-auth-driver-for-laravel-4.html
http://toddish.co.uk/blog/creating-a-custom-laravel-4-auth-driver/
Thx for your reply, now im definitely considering using some auth lib...
You should just have to replace the userprovider, which is a small class that's easy to modify.
https://github.com/laravel/framework/blob/v4.1.20/src/Illuminate/Auth/EloquentUserProvider.php
Auth::setProvider(new MyUserProvider)
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community