- Added `ticket_generation_policy` column to `catalog_items` table to manage ticket generation strategies. - Created `ticket_validity_times` table to allow multiple validity times per ticket. - Introduced `validity_time_id` column in `event_dates` table to associate event dates with validity times. - Established `ticket_validity_groups` and `ticket_validity_group_times` tables to group validity times for tickets. - Updated seeder to set default ticket generation policy for specific tenant. - Enhanced tests to cover new functionality, including ticket generation based on event dates and validity times. - Refactored ticket validity checks to accommodate multiple validity times in a group.
43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Forms\Resources;
|
|
|
|
use App\Domains\Catalog\Models\AttributeOption;
|
|
use App\Domains\Event\Models\EventDate;
|
|
use App\Domains\Ticket\Resources\ValidityTimeResource;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use Illuminate\Support\Collection;
|
|
|
|
class FoodFormResource extends JsonResource
|
|
{
|
|
/** @return array<string, mixed> */
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'event_dates' => $this->resource['event_dates']->map(
|
|
fn (EventDate $eventDate): array => [
|
|
'id' => $eventDate->id,
|
|
'validity_time_id' => $eventDate->validity_time_id,
|
|
'validity_time' => ValidityTimeResource::make($eventDate->validityTime),
|
|
'date' => $eventDate->date->format('Y-m-d'),
|
|
]
|
|
)->values(),
|
|
'schedules' => $this->options($this->resource['schedules']),
|
|
'services' => $this->options($this->resource['services']),
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param Collection<int, AttributeOption> $options
|
|
* @return Collection<int, array{value: string, label: string}>
|
|
*/
|
|
private function options(Collection $options): Collection
|
|
{
|
|
return $options->map(fn (AttributeOption $option): array => [
|
|
'value' => $option->value,
|
|
'label' => $option->label,
|
|
])->values();
|
|
}
|
|
}
|