nhance/app/Models/StateModel.php
2024-09-13 09:00:09 +05:30

21 lines
348 B
PHP
Executable File

<?php
namespace App\Models;
use CodeIgniter\Model;
class StateModel extends Model
{
protected $table = 'states';
protected $primaryKey = 'id';
protected $allowedFields = [
"id",
"state"
];
public function getAllStates()
{
return $this->select('id, state')->findAll();
}
}