updated to foundation

This commit is contained in:
Garrett Mills
2016-06-24 20:37:24 -05:00
parent b477184692
commit 197c223dc5
2 changed files with 8 additions and 4 deletions

View File

@@ -11,8 +11,9 @@ namespace Glmdev\Meta;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Schema\Blueprint;
use Ramsey\Uuid\Uuid;
use Glmdev\Foundation\FoundationModel;
class Meta extends Model
class Meta extends Model implements FoundationModel
{
protected $fillable = ['meta', 'uuid'];
@@ -70,4 +71,6 @@ class Meta extends Model
$table->text('meta');
}
public static function route(){}
}