sarga/packages/Webkul/Customer/src/Models/Customer.php

20 lines
404 B
PHP
Raw Normal View History

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