feat(food): implement FoodFormController and FoodFormService; add FoodFormResource for managing food options and routes
This commit is contained in:
39
app/Domains/Forms/Resources/FoodFormResource.php
Normal file
39
app/Domains/Forms/Resources/FoodFormResource.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domains\Forms\Resources;
|
||||
|
||||
use App\Domains\Catalog\Models\AttributeOption;
|
||||
use App\Domains\Event\Models\EventDate;
|
||||
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,
|
||||
'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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user