32 lines
956 B
PHP
32 lines
956 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources\V2;
|
|
|
|
use Illuminate\Http\Resources\Json\ResourceCollection;
|
|
|
|
class FlashDealProductCollection extends ResourceCollection
|
|
{
|
|
/**
|
|
* Transform the resource collection into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'data' => $this->collection->map(function($data) {
|
|
return [
|
|
'id' => $data->product_id,
|
|
'name' => $data->product->name,
|
|
'image' => uploaded_asset($data->product->thumbnail_img),
|
|
'price' => home_discounted_base_price($data->product),
|
|
'links' => [
|
|
'details' => route('products.show', $data->product_id),
|
|
]
|
|
];
|
|
})
|
|
];
|
|
}
|
|
}
|