<?php namespace Komma\Routes; use Illuminate\Database\Eloquent\Model; class Route extends Model { protected $with = array('routable'); public function routable() { return $this->morphTo(); } }