SuperSeb92

Results 1 issues of SuperSeb92

When using a custom primary key in a model ``` protected $primaryKey = 'reference'; ``` and the following migration ``` $table->string('reference', 20)->primary(); $table->string('parent_id', 20)->nullable(); $table->integer('lft')->nullable(); $table->integer('rgt')->nullable(); $table->integer('depth')->nullable(); ``` The following:...

Needs unit test