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

16 lines
322 B
PHP

<?php
namespace App\Models\Shop;
use Illuminate\Database\Eloquent\Model;
class ArticleAttributeValue extends Model
{
protected $guarded = ['id'];
protected $table = 'shop_article_attribute_values';
public function attribute_family()
{
return $this->belongsTo('App\Models\Shop\ArticleAttributeFamily');
}
}