<?php namespace Komma\Kms\Core\Routes;
use Illuminate\Database\Eloquent\Model;
/**
* Short description for the file.
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2015, Komma Mediadesign
*/
class KmsRoute extends Model
{
protected $table = 'routes';
protected $fillable = ['route','rest_route'];
public function routable()
{
return $this->morphTo();
}
}