QueenFruits/Backend/app/Http/Resources/Order/ProductImageResource.php

20 lines
394 B
PHP

<?php
namespace App\Http\Resources\Order;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
class ProductImageResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return $this->product_image_url_snapshot;
}
}