for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
final class StudentResource extends JsonResource
{
/**
* @param Request $request
* @return array
*/
public function toArray($request)
return [
'id' => $this->id,
id
App\Http\Resources\StudentResource
__get
'name' => $this->name,
name
];
}