25 lines
516 B
PHP
25 lines
516 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class TopicResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
"id" => $this->id,
|
|
"name" => $this->name,
|
|
"slug" => $this->slug,
|
|
"link" => url(route('api.topics.show', $this->slug))
|
|
];
|
|
}
|
|
}
|