File: /www/wwwroot/www.shooperm.com/Modules/Product/Transformers/TagResource.php
<?php
namespace Modules\Product\Transformers;
use Illuminate\Http\Resources\Json\JsonResource;
class TagResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request
* @return array
*/
public function toArray($request)
{
return [
'id' => $this->id,
'tag' => $this->name,
'Products' => $this->frontend_products,
'created_at' => $this->created_at,
'updated_at' => $this->updated_at
];
}
}