38 lines
841 B
PHP
38 lines
841 B
PHP
<?php
|
|
/**
|
|
* AttributeGroup.php
|
|
*
|
|
* @copyright 2023 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author TL <mengwb@guangda.work>
|
|
* @created 2023-01-03 20:22:18
|
|
* @modified 2023-01-03 20:22:18
|
|
*/
|
|
|
|
namespace Beike\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
class AttributeGroup extends Base
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = ['sort_order'];
|
|
|
|
public function description()
|
|
{
|
|
return $this->hasOne(AttributeGroupDescription::class)->where('locale', locale());
|
|
}
|
|
|
|
public function descriptions(): HasMany
|
|
{
|
|
return $this->hasMany(AttributeGroupDescription::class);
|
|
}
|
|
|
|
public function attributes(): HasMany
|
|
{
|
|
return $this->hasMany(Attribute::class);
|
|
}
|
|
}
|