You have a typo here:
protected $fillabel = [...];
so probably you save empty value in some fields, that have unique index.
However that's probably not the case, right?
Try this instead:
$tags = array(
Tag::firstOrNew(array('tag'=>'SCIFI')),
Tag::firstOrNew(array('tag'=>'FANTASY')),
Tag::firstOrNew(array('tag'=>'ADVENTURE')),
);
Mind that this will call db query for each tag.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community