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

12 lines
224 B
PHP
Raw Normal View History

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
{
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
}