21 lines
348 B
PHP
Executable File
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();
|
|
}
|
|
}
|