123456789101112131415161718192021 |
- <?php
- namespace App\Shop\Attributes;
- use App\Shop\AttributeValues\AttributeValue;
- use Illuminate\Database\Eloquent\Model;
- class Attribute extends Model
- {
- protected $fillable = [
- 'name'
- ];
- /**
- * @return \Illuminate\Database\Eloquent\Relations\HasMany
- */
- public function values()
- {
- return $this->hasMany(AttributeValue::class);
- }
- }
|