- Introduced Event and EventDate models with relationships to Tenant and CatalogItem. - Added active_event_id to Tenant model to track the currently active event. - Updated TenantResource to include active event details in the response. - Enhanced Ticket model to link to CatalogItem and Variant, allowing for event-specific ticketing. - Implemented migrations to create events and link them to catalog items and variants. - Updated seeders to populate events and their associated dates for the Fiesta Futbol Infantil tenant. - Modified Ticket generation logic to respect event dates over standard ticket dates. - Added tests for event and ticket functionalities, ensuring proper relationships and date handling.
61 lines
2.7 KiB
PHP
61 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Catalog\Resources;
|
|
|
|
use App\Domains\Catalog\Models\CatalogItem;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
/** @mixin CatalogItem */
|
|
class CatalogItemResource extends JsonResource
|
|
{
|
|
/** @return array<string, mixed> */
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'type' => $this->type->value,
|
|
'event_id' => $this->event_id,
|
|
'event_product_type' => $this->event_product_type?->value,
|
|
'category_id' => $this->category_id,
|
|
'brand_id' => $this->brand_id,
|
|
'slug' => $this->slug,
|
|
'nombre' => $this->nombre,
|
|
'descripcion' => $this->descripcion,
|
|
'precio' => $this->precio,
|
|
'inventory_policy' => $this->inventory_policy?->value,
|
|
'has_tickets' => $this->has_tickets,
|
|
'minimum_use_date' => $this->minimum_use_date,
|
|
'maximum_use_date' => $this->maximum_use_date,
|
|
'real_stock' => $this->whenLoaded('inventory', fn () => $this->inventory?->real_stock),
|
|
'images' => $this->whenLoaded('attachments', fn () => $this->attachments
|
|
->map(fn ($attachment) => $attachment->getTemporaryUrl(1440))
|
|
->values()),
|
|
'variants' => $this->whenLoaded('variants', fn () => $this->variants
|
|
->map(fn ($variant) => [
|
|
'id' => $variant->id,
|
|
'event_date_id' => $variant->event_date_id,
|
|
'event_date' => $variant->eventDate?->date?->format('Y-m-d'),
|
|
'real_stock' => $variant->inventory?->real_stock,
|
|
'minimum_use_date' => $variant->minimum_use_date,
|
|
'maximum_use_date' => $variant->maximum_use_date,
|
|
'effective_minimum_use_date' => $variant->eventDate?->startsAt()
|
|
?? $variant->minimum_use_date
|
|
?? $this->minimum_use_date,
|
|
'effective_maximum_use_date' => $variant->eventDate?->endsAt()
|
|
?? $variant->maximum_use_date
|
|
?? $this->maximum_use_date,
|
|
'values' => $variant->definitions
|
|
->mapWithKeys(fn ($definition) => [
|
|
$definition->itemAttribute?->attribute?->codigo => $definition->value,
|
|
])
|
|
->filter(fn ($value, $key) => $key !== null),
|
|
'images' => $variant->attachments
|
|
->map(fn ($attachment) => $attachment->getTemporaryUrl(1440))
|
|
->values(),
|
|
])
|
|
->values()),
|
|
];
|
|
}
|
|
}
|