API
This commit is contained in:
16
api/src/Propiedad.php
Normal file
16
api/src/Propiedad.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user