¨4.0.1¨
This commit is contained in:
36
Modules/Variation/Transformers/VariationValueResource.php
Normal file
36
Modules/Variation/Transformers/VariationValueResource.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Variation\Transformers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\Resources\Json\JsonResource;
|
||||
|
||||
class VariationValueResource extends JsonResource
|
||||
{
|
||||
/**
|
||||
* Transform the resource into an array.
|
||||
*
|
||||
* @param Request $request
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function toArray($request): array
|
||||
{
|
||||
return [
|
||||
'id' => $this->id,
|
||||
'uid' => $this->uid,
|
||||
'label' => $this->label,
|
||||
'image' => $this->when(
|
||||
condition: $this->variation->type === 'image',
|
||||
value: fn () => [
|
||||
'id' => $this->image?->id,
|
||||
'path' => $this->image?->path,
|
||||
]
|
||||
),
|
||||
'color' => $this->when(
|
||||
condition: $this->variation->type === 'color',
|
||||
value: $this->color
|
||||
),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user