add shipping rules
This commit is contained in:
@@ -2,19 +2,19 @@
|
||||
|
||||
namespace App\Models\Core\Auth;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
||||
use Yadahan\AuthenticationLog\AuthenticationLogable;
|
||||
// use HighIdeas\UsersOnline\Traits\UsersOnlineTrait;
|
||||
use Sebastienheyd\Boilerplate\Models\User as parentUser;
|
||||
// use HighIdeas\UsersOnline\Traits\UsersOnlineTrait;
|
||||
use Yadahan\AuthenticationLog\AuthenticationLogable;
|
||||
|
||||
class User extends parentUser
|
||||
{
|
||||
// use UserHasTeams, UsersOnlineTrait;
|
||||
use AuthenticationLogable;
|
||||
|
||||
|
||||
protected $fillable = ['active', 'last_name', 'first_name', 'username', 'email', 'password', 'remember_token', 'last_login'];
|
||||
|
||||
protected $hidden = ['password', 'remember_token'];
|
||||
|
||||
protected $casts = [
|
||||
'email_verified_at' => 'datetime',
|
||||
'settings' => 'array',
|
||||
|
||||
Reference in New Issue
Block a user