This commit is contained in:
Ludovic CANDELLIER
2021-03-30 23:06:12 +02:00
parent 993154674e
commit a7881e4261
8 changed files with 34 additions and 4 deletions

View File

@@ -3,9 +3,14 @@
namespace App\Models\Shop;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Znck\Eloquent\Traits\BelongsToThrough;
class Unity extends Model
{
use BelongsToThrough, softDeletes;
protected $guarded = ['id'];
protected $table = 'shop_unities';
@@ -14,6 +19,11 @@ class Unity extends Model
return $this->belongsTo('App\Models\Shop\Package');
}
public function article_family()
{
return $this->belongsToThrough('App\Models\Shop\ArticleFamily', 'App\Models\Shop\Package', null, '', ['App\Models\Shop\ArticleFamily' => 'article_family_id', 'App\Models\Shop\Package' => 'package_id']);
}
public function scopeByPackage($query, $id)
{
return $query->where('package_id', $id);