Skip to content

Instantly share code, notes, and snippets.

@coreymcmahon
Created February 15, 2015 12:44
Show Gist options
  • Save coreymcmahon/b2260acf43f212a9a806 to your computer and use it in GitHub Desktop.
Save coreymcmahon/b2260acf43f212a9a806 to your computer and use it in GitHub Desktop.
<?php namespace App\Models;
use Illuminate\Auth\Authenticatable;
use Illuminate\Auth\Passwords\CanResetPassword;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
use Illuminate\Database\Eloquent\Model;
class User extends Model implements AuthenticatableContract, CanResetPasswordContract
{
use Authenticatable, CanResetPassword;
/** etc... */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment