Posts by Gabriel Koerich • 111 points
1 post
-
1
votes2
answers317
viewsA: Problem with Seed Relationship between Category and Sub-Category in Laravel 4
And why not just create an entity? Migration: Schema::create('categories', function($table) { $table->increments('id'); $table->integer('parent_id')->nullable(); $table->string('name');…