Files
opensem/app/Models/Shop/ArticleAttributeFamily.php
2020-06-07 23:15:22 +02:00

17 lines
332 B
PHP

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