<?php
/**
* Short description for the file.
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2015, Komma Mediadesign
*/
namespace Komma\Properties\Models;
use Komma\Kms\Properties\Models\Property as KmsProperty;
class Property extends KmsProperty
{
public function routes()
{
return $this->morphMany('Komma\Kms\Core\Routes\KmsRoute', 'routable');
}
}