eval-desempeno-v2/app/Models/DepartamentoModel.php
2022-08-01 14:28:07 -05:00

21 lines
395 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class DepartamentoModel extends Model
{
protected $table = 'departamento';
protected $primaryKey = 'iddepartamento';
function getDepartamentos()
{
return $this->select(['iddepartamento', 'nombre'])
->where('status', '1')
->orderBy('nombre')
->findAll();
}
}