Files
opensem/app/Models/Shop/ArticleAttribute.php
Ludovic CANDELLIER d0e3bb6251 Attributes
2020-05-05 19:07:11 +02:00

18 lines
308 B
PHP

<?php
namespace App\Models\Shop;
use Illuminate\Database\Eloquent\Relations\Pivot;
class ArticleAttribute extends Pivot
{
public function article()
{
return $this->belongsTo('App\Models\Shop\Article');
}
public function value()
{
return $this->belongsTo('App\Models\Shop\ArticleAttribute');
}
}