laravel-goto-controller icon indicating copy to clipboard operation
laravel-goto-controller copied to clipboard

Go to a method from an array with a class and the method [feature]

Open dmitrach opened this issue 4 years ago • 1 comments

Hello.

I have a code with a class and a method.

use App\Http\Controllers\API\CalculatorController;

Route::get('computation/{id}', [CalculatorController::class, 'getComputation']); // \App\Http\Controllers\API\CalculatorController@getComputation

I would like to go to a method by this route declaration.

Thanks.

dmitrach avatar Sep 21 '20 11:09 dmitrach

@stef-k , Not working with named routes with class.

image

  1. Working
  2. Not working
  3. Working

arifszn avatar Nov 15 '20 18:11 arifszn