<?php namespace Modules\Channel\Models; class PayProduct extends BaseModel { protected $table = 'pay_products'; protected $fillable = [ 'id', 'price', 'type', 'given', 'created_at', 'updated_at', ]; }