65 lines
1.6 KiB
PHP
65 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Catalog\Models;
|
|
|
|
use App\Domains\Catalog\Enums\FeaturedGroupSource;
|
|
use App\Domains\Catalog\Enums\GroupLayout;
|
|
use App\Domains\Catalog\Enums\ProductLayout;
|
|
use App\Domains\Tenant\Models\Tenant;
|
|
use Illuminate\Database\Eloquent\Attributes\Fillable;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
#[Fillable([
|
|
'tenant_code',
|
|
'source_type',
|
|
'category_id',
|
|
'product_layout',
|
|
'group_layout',
|
|
'group_name',
|
|
'group_order',
|
|
])]
|
|
class FeaturedGroup extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $table = 'featured_groups';
|
|
|
|
protected $attributes = [
|
|
'source_type' => FeaturedGroupSource::Manual->value,
|
|
];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'source_type' => FeaturedGroupSource::class,
|
|
'category_id' => 'integer',
|
|
'product_layout' => ProductLayout::class,
|
|
'group_layout' => GroupLayout::class,
|
|
'group_order' => 'integer',
|
|
];
|
|
}
|
|
|
|
/** @return BelongsTo<Tenant, $this> */
|
|
public function tenant(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Tenant::class, 'tenant_code', 'codigo');
|
|
}
|
|
|
|
/** @return BelongsTo<Category, $this> */
|
|
public function category(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Category::class);
|
|
}
|
|
|
|
/** @return HasMany<FeaturedItem, $this> */
|
|
public function featuredItems(): HasMany
|
|
{
|
|
return $this->hasMany(FeaturedItem::class)->orderBy('order');
|
|
}
|
|
}
|