13 lines
438 B
PHP
13 lines
438 B
PHP
<?php namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class Member_credits_model extends Model
|
|
{
|
|
protected $table = 'member_credits';
|
|
protected $primaryKey = 'id';
|
|
|
|
protected $allowedFields = ['member_id','pack_id','package_name','package_type','credit_points','running_balance','used_points', 'expired_points','expiring_date', 'cost' ,'is_active', 'order_id','transaction_id' ,'cost_with_tax','method','created_by'];
|
|
|
|
|
|
} |