codigo actual del servidor, con avances de joan
This commit is contained in:
23
app/Http/Resources/V2/PurchasedResource.php
Normal file
23
app/Http/Resources/V2/PurchasedResource.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Resources\V2;
|
||||
|
||||
use Illuminate\Http\Resources\Json\JsonResource;
|
||||
|
||||
class PurchasedResource extends JsonResource
|
||||
{
|
||||
/**
|
||||
* Transform the resource into an array.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
|
||||
*/
|
||||
public function toArray($request)
|
||||
{
|
||||
return [
|
||||
'id'=> $this->id,
|
||||
'name'=> $this->getTranslation('name'),
|
||||
'thumbnail_image' => uploaded_asset($this->thumbnail_img),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user