golf_backend/app/Models/transaction_model.php
2023-06-03 16:11:57 +05:30

13 lines
253 B
PHP

<?php namespace App\Models;
use CodeIgniter\Model;
class transaction_model extends Model
{
protected $table = 'transactions';
protected $primaryKey = 'id';
protected $allowedFields = ['member_id','transaction_id','transaction'];
}