2018-07-20 15:15:21 +00:00
|
|
|
<?php
|
|
|
|
|
namespace Webkul\Customer\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
2018-10-23 11:51:04 +00:00
|
|
|
class CustomerGroup extends Model
|
2018-07-20 15:15:21 +00:00
|
|
|
{
|
2018-07-24 14:33:49 +00:00
|
|
|
protected $table = 'customer_groups';
|
2018-10-22 05:47:42 +00:00
|
|
|
|
|
|
|
|
protected $fillable = ['group_name', 'is_user_defined'];
|
2018-07-20 15:15:21 +00:00
|
|
|
}
|