17 lines
306 B
PHP
17 lines
306 B
PHP
<?php
|
|
namespace Incoviba;
|
|
|
|
use \Model;
|
|
|
|
class Propiedad extends Model {
|
|
public static $_table = 'propiedad';
|
|
|
|
protected $venta;
|
|
public function venta() {
|
|
if ($this->venta === null) {
|
|
$this->venta = $this->has_one(Venta::class, 'propiedad')->find_one();
|
|
}
|
|
return $this->venta;
|
|
}
|
|
}
|