Created API endpoints
This commit is contained in:
27
app/Http/Resources/RespondentResource.php
Normal file
27
app/Http/Resources/RespondentResource.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Resources;
|
||||
|
||||
use Illuminate\Http\Resources\Json\Resource;
|
||||
|
||||
class RespondentResource extends Resource
|
||||
{
|
||||
/**
|
||||
* Transform the resource into an array.
|
||||
*
|
||||
* @param \Illuminate\Http\Request
|
||||
* @return array
|
||||
*/
|
||||
public function toArray($request)
|
||||
{
|
||||
return [
|
||||
'id' => $this->id,
|
||||
'name' => $this->name,
|
||||
'occupation' => $this->occupation,
|
||||
'gender' => $this->gender,
|
||||
'links' => [
|
||||
'self' => route('respondents.show', ['respondents' => $this->id])
|
||||
]
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user