57 lines
2.4 KiB
PHP
57 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Catalog\Resources;
|
|
|
|
use App\Domains\Catalog\Models\CatalogItem;
|
|
use App\Domains\Ticket\Resources\ValidityTimeResource;
|
|
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_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,
|
|
'max_units_per_user' => $this->max_units_per_user,
|
|
'has_tickets' => $this->has_tickets,
|
|
'validity_time_id' => $this->validity_time_id,
|
|
'validity_time' => $this->whenLoaded(
|
|
'validityTime',
|
|
fn () => ValidityTimeResource::make($this->validityTime),
|
|
),
|
|
'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,
|
|
'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()),
|
|
];
|
|
}
|
|
}
|