first upload all files

This commit is contained in:
NW
2023-06-11 13:14:03 +01:00
parent f14dbc52b5
commit c08b36d1b6
1705 changed files with 106852 additions and 0 deletions

View File

@@ -0,0 +1,56 @@
<?php
namespace Modules\Attribute\Entities;
use Modules\Support\Eloquent\Model;
class ProductAttribute extends Model
{
/**
* The relations to eager load on every query.
*
* @var array
*/
protected $with = ['attribute', 'values'];
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['attribute_id'];
/**
* The accessors to append to the model's array form.
*
* @var array
*/
protected $appends = ['name'];
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
public function attribute()
{
return $this->belongsTo(Attribute::class);
}
public function values()
{
return $this->hasMany(ProductAttributeValue::class, 'product_attribute_id');
}
public function getNameAttribute()
{
return $this->attribute->name;
}
public function getAttributeSetAttribute()
{
return $this->attribute->attributeSet->name;
}
}