fix: add isFavorite on Product show response

This commit is contained in:
kusowl 2026-03-05 18:07:46 +05:30
parent 0f56303d59
commit 95afd46406

View File

@ -27,7 +27,10 @@ public function store(CreateProductRequest $request)
public function show(string $slug)
{
$product = Product::where('slug', $slug)->with(['category:id,name,slug', 'images:id,path,product_id'])->firstOrFail();
$product = Product::where('slug', $slug)
->with(['category:id,name,slug', 'images:id,path,product_id'])
->withExists('favoritedBy')
->firstOrFail();
return new ProductResource(ProductDTO::fromModel($product));
}