17 lines
362 B
PHP
17 lines
362 B
PHP
|
<?php
|
||
|
namespace Incoviba;
|
||
|
|
||
|
use \Model;
|
||
|
|
||
|
class Unidad extends Model {
|
||
|
public static $_table = 'unidad';
|
||
|
|
||
|
protected $propiedad_unidad;
|
||
|
public function propiedad_unidad() {
|
||
|
if ($this->propiedad_unidad === null) {
|
||
|
$this->propiedad_unidad = $this->has_one(PropiedadUnidad::class, 'unidad')->find_one();
|
||
|
}
|
||
|
return $this->propiedad_unidad;
|
||
|
}
|
||
|
}
|