<?php
namespace App\Http\Resources\V2;
use Illuminate\Http\Resources\Json\ResourceCollection;
class SearchProductCollection extends ResourceCollection
{
public function toArray($request)
{
return [
'data' => $this->collection->map(function($data) {
return [
'name' => $data->name,
'thumbnail_image' => uploaded_asset($data->thumbnail_img),
'base_price' => (double) home_base_price($data, false),
'base_discounted_price' => (double) home_discounted_base_price($data, false),
'rating' => (double) $data->rating,
'links' => [
'details' => route('products.show', $data->id),
'reviews' => route('api.reviews.index', $data->id),
'related' => route('products.related', $data->id),
'top_from_seller' => route('products.topFromSeller', $data->id)
]
];
})
];
}
public function with($request)
{
return [
'success' => true,
'status' => 200
];
}
}
|