mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
771 B
PHP
31 lines
771 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use Illuminate\Http\Resources\Json\ResourceCollection;
|
|
|
|
class ProductCardCollection extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource collection into an array.
|
|
*
|
|
* @return array<int|string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
|
|
'id'=> $this->id,
|
|
'slug' => $this->slug,
|
|
'name' => $this->name,
|
|
'price' => $this->price,
|
|
'image' => $this->imgUrl(),
|
|
'meta' => $this->fullMeta(),
|
|
'max' => $this->stock_quantity,
|
|
'qz' => QunatityCollection::collection($this->quantities),
|
|
];
|
|
}
|
|
}
|