Laravel Eloquent hasMany relationship only return 1 value
i am casting an array [1,2] and in my model I have this setup protected $casts = [ 'skills' => 'array' ]; and I have my relationship setup like this public function skills(){ return $this->hasMany(Skill::class,'id'); } now my problem is…