- Updated the FeaturedGroupService to include 'variants.eventDates' in the items query. - Introduced a BelongsToMany relationship in EventDate for selected variants. - Modified PurchaseItemResource and PurchaseItemSnapshotFactory to handle multiple event dates for variants. - Enhanced StartCheckoutService to load event dates for variants. - Updated TicketGeneratorService to accommodate event dates in ticket generation. - Created migrations to support multi-value event dates and allow multiple variant values per attribute. - Adjusted seeders to reflect new event date handling and added new attributes. - Added tests to ensure correct functionality for multi-date variants and their integration with ticket generation.
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Catalog\Models;
|
|
|
|
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([
|
|
'catalog_item_id',
|
|
'attribute_id',
|
|
'allow_multi_select',
|
|
])]
|
|
class ItemAttribute extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'item_attributes';
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'catalog_item_id' => 'integer',
|
|
'attribute_id' => 'integer',
|
|
'allow_multi_select' => 'boolean',
|
|
];
|
|
}
|
|
|
|
/** @return BelongsTo<CatalogItem, $this> */
|
|
public function catalogItem(): BelongsTo
|
|
{
|
|
return $this->belongsTo(CatalogItem::class);
|
|
}
|
|
|
|
/** @return BelongsTo<Attribute, $this> */
|
|
public function attribute(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Attribute::class);
|
|
}
|
|
|
|
/** @return HasMany<VariantDefinition, $this> */
|
|
public function variantDefinitions(): HasMany
|
|
{
|
|
return $this->hasMany(VariantDefinition::class);
|
|
}
|
|
}
|