Filters collapsed, customer auth and register, fix on basket recalculation
This commit is contained in:
@@ -6,29 +6,16 @@ use Carbon\Carbon;
|
||||
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
||||
use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
use Yadahan\AuthenticationLog\AuthenticationLogable;
|
||||
use HighIdeas\UsersOnline\Traits\UsersOnlineTrait;
|
||||
// use HighIdeas\UsersOnline\Traits\UsersOnlineTrait;
|
||||
use Sebastienheyd\Boilerplate\Models\User as parentUser;
|
||||
|
||||
class User extends parentUser
|
||||
{
|
||||
// use UserHasTeams;
|
||||
use AuthenticationLogable, SoftDeletes, UsersOnlineTrait;
|
||||
// use UserHasTeams, UsersOnlineTrait;
|
||||
use AuthenticationLogable, SoftDeletes;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = ['active', 'last_name', 'first_name', 'username', 'email', 'password', 'remember_token', 'last_login'];
|
||||
|
||||
protected $hidden = ['password', 'remember_token'];
|
||||
|
||||
|
||||
/**
|
||||
* The attributes that should be cast to native types.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $casts = [
|
||||
'email_verified_at' => 'datetime',
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user