Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

21 rinda
395B

  1. <?php
  2. namespace App\Models;
  3. use CodeIgniter\Model;
  4. class DepartamentoModel extends Model
  5. {
  6. protected $table = 'departamento';
  7. protected $primaryKey = 'iddepartamento';
  8. function getDepartamentos()
  9. {
  10. return $this->select(['iddepartamento', 'nombre'])
  11. ->where('status', '1')
  12. ->orderBy('nombre')
  13. ->findAll();
  14. }
  15. }