This commit is contained in:
Ludovic CANDELLIER
2021-03-27 01:16:37 +01:00
parent 22fa3d3246
commit 4855254a7f
21 changed files with 219 additions and 137 deletions

View File

@@ -22,8 +22,8 @@ class ArticleFamily extends Model
return $this->hasMany('App\Models\Shop\Price');
}
public function unities()
public function packages()
{
return $this->hasMany('App\Models\Shop\Unity');
return $this->hasMany('App\Models\Shop\Package');
}
}