Laravel - Controllers
Given this route registration:
Which URL and HTTP method will call the 'update' method in BookController?
Route::apiResource('books', BookController::class);Which URL and HTTP method will call the 'update' method in BookController?
