golf_backend/app/Models/Credits_usage_tracking_model.php
2023-05-12 14:39:53 +05:30

13 lines
295 B
PHP

<?php namespace App\Models;
use CodeIgniter\Model;
class Credits_usage_tracking_model extends Model
{
protected $table = 'credit_points_tracking';
protected $primaryKey = 'id';
protected $allowedFields = ['member_id','member_credits_id', 'used_points','slot_date_time'];
}