17 lines
350 B
PHP
17 lines
350 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 Values()
|
|
{
|
|
return $this->hasMany('App\Models\Shop\ArticleAttributeValue','attribute_family_id');
|
|
}
|
|
|
|
} |