New-Thanasoft/thanasoft-back/app/Http/Resources/ProductPackagingResource.php

27 lines
620 B
PHP

<?php
namespace App\Http\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
class ProductPackagingResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return [
'id' => $this->id,
'product_id' => $this->product_id,
'name' => $this->name,
'qty_base' => $this->qty_base,
'created_at' => $this->created_at,
'updated_at' => $this->updated_at,
];
}
}