28 lines
600 B
PHP
28 lines
600 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\Resource;
|
|
|
|
class CategoryResource extends Resource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
// return parent::toArray($request);
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $this->name,
|
|
'code' => $this->code,
|
|
'links' => [
|
|
'self' => route('categories.show', ['categories' => $this->id])
|
|
]
|
|
];
|
|
}
|
|
}
|