- Create TicketValiditySchemaTest to verify database schema for ticket validity. - Update CatalogModelsTest to include tests for event date attributes and selection options. - Introduce EventDateTextFormatterTest for formatting event dates in Spanish. - Refactor EventModelsTest to include validity time relationships. - Add SaleDetailResourceTest to ensure correct serialization of purchase items. - Enhance TicketTest with validity time checks and status management. - Implement ValidityTimeResourceTest to validate resource output for different validity types. - Add ValidityTimeTest to verify casting and validity checks for validity time types.
33 lines
877 B
PHP
33 lines
877 B
PHP
<?php
|
|
|
|
namespace App\Domains\Forms\Services;
|
|
|
|
use App\Domains\Catalog\Models\Attribute;
|
|
use App\Domains\Catalog\Models\AttributeOption;
|
|
use App\Domains\Tenant\Models\Tenant;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
class MerchandiseFormService
|
|
{
|
|
/**
|
|
* @return array{
|
|
* colors: Collection<int, AttributeOption>,
|
|
* sizes: Collection<int, AttributeOption>
|
|
* }
|
|
*/
|
|
public function get(Tenant $tenant): array
|
|
{
|
|
$attributes = Attribute::query()
|
|
->where('tenant_codigo', $tenant->codigo)
|
|
->whereIn('codigo', ['color', 'talle'])
|
|
->with('options')
|
|
->get()
|
|
->keyBy('codigo');
|
|
|
|
return [
|
|
'colors' => $attributes->get('color')?->options ?? new Collection,
|
|
'sizes' => $attributes->get('talle')?->options ?? new Collection,
|
|
];
|
|
}
|
|
}
|