Files
getgreen-backend/app/Http/Resources/ProductScreenResource.php

26 lines
523 B
PHP
Executable File

<?php
namespace App\Http\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
class ProductScreenResource extends JsonResource
{
public static $wrap = false;
/**
* Transform the resource into an array.
*
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return [
'id' => $this->id,
'path' => $this->getPath(),
'path_thumb' => $this->getPathThumb(),
];
}
}