golf_backend/app/Models/Cart_model.php
2023-05-11 14:51:41 +05:30

13 lines
217 B
PHP

<?php namespace App\Models;
use CodeIgniter\Model;
class Cart_model extends Model
{
protected $table = 'cart';
protected $primaryKey = 'id';
protected $allowedFields = ['member_id','pack_id'];
}