Merge pull request #1 from glmdev/foundation

updated to foundation
master
glmdev 8 years ago committed by GitHub
commit d1421116b9

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

@ -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(){}
}
Loading…
Cancel
Save