| 12345678910111213141516171819202122 | <?phpnamespace App\Http\Resources;use Illuminate\Http\Request;use Illuminate\Http\Resources\Json\JsonResource;class BookResource extends JsonResource{    /**     * Transform the resource into an array.     *     * @return array<string, mixed>     */    public function toArray(Request $request): array    {        return [			"name" => $this->name,			"author_id" => $this->author->id        ];    }}
 |