for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace GeneaLabs\LaravelModelCaching\Tests\Fixtures\Http\Resources;
use Illuminate\Http\Resources\Json\JsonResource;
class Author extends JsonResource
{
public function toArray($request)
return [
'name' => $this->name,
'books' => $this->books,
];
}