the_mechanic/app/Models/BikemakeModel.php
2024-09-25 09:12:05 +05:30

11 lines
237 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class BikemakeModel extends Model
{
protected $table = 'make';
protected $primaryKey = 'make_id';
protected $allowedFields = ['make_id','business_id','make','isactive'];
}