updated to foundation

master
Garrett Mills 8 years ago
parent b477184692
commit 197c223dc5

@ -1,7 +1,7 @@
{ {
"name": "glmdev/meta", "name": "glmdev/meta",
"description": "The Framework for Meta enabled Laravel models.", "description": "The Framework for Meta enabled Laravel models.",
"license": "GNU General Public License v. 3", "license": "GPL-3.0",
"authors": [ "authors": [
{ {
"name": "Garrett Mills", "name": "Garrett Mills",
@ -9,11 +9,12 @@
} }
], ],
"require": { "require": {
"ramsey/uuid": "^3.2" "ramsey/uuid": "^3.2",
"glmdev/foundation": "^0.2.0"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"App\\": "app/", "App\\": "../../../app/",
"Glmdev\\Meta\\": "src/" "Glmdev\\Meta\\": "src/"
} }
} }

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