golf_backend/app/Models/transaction_model.php
2023-05-31 14:18:04 +05:30

13 lines
236 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'];
}