Creating a tag transformer

parent a487a06a
<?php
namespace Modules\Tag\Transformers;
use Illuminate\Http\Resources\Json\Resource;
class TagTransformer extends Resource
{
public function toArray($request)
{
return [
'id' => $this->id,
'slug' => $this->slug,
'name' => $this->name,
];
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment