2018-07-20 15:07:16 +00:00
|
|
|
<?php
|
2018-07-24 14:33:49 +00:00
|
|
|
|
2018-07-20 15:07:16 +00:00
|
|
|
namespace Webkul\Customer\Models;
|
|
|
|
|
|
2018-07-24 14:33:49 +00:00
|
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
|
use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
|
|
|
|
|
|
|
|
// use Webkul\User\Notifications\AdminResetPassword;
|
|
|
|
|
|
|
|
|
|
// use Webkul\User\Notifications\AdminResetPassword;
|
2018-07-20 15:07:16 +00:00
|
|
|
|
2018-07-24 14:33:49 +00:00
|
|
|
|
|
|
|
|
class Customer extends Authenticatable
|
2018-07-20 15:07:16 +00:00
|
|
|
{
|
2018-07-24 14:33:49 +00:00
|
|
|
use Notifiable;
|
|
|
|
|
|
2018-07-20 15:07:16 +00:00
|
|
|
protected $table = 'customers';
|
2018-07-27 13:37:56 +00:00
|
|
|
protected $hidden = ['password','remember_token'];
|
2018-07-20 15:07:16 +00:00
|
|
|
}
|