File: D:/HostingSpaces/PDeckers/opelkapitan.nl/workbench/komma/kms/src/Komma/Kms/Core/Routes/KmsRoute.php
<?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', 'routable_id', 'routable_type', 'sitemap_weight'];
public function routable()
{
return $this->morphTo();
}
}