I had the same issue above mentioned, solved it by defining model as follows,
use Illuminate\Auth\UserTrait;
use Illuminate\Auth\UserInterface;
class User extends Eloquent implements UserInterface{
use UserTrait;
protected $table = 'tbl_name';
// remaining code
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community