laravel-goto-controller
laravel-goto-controller copied to clipboard
not working with laravel 8.6
In laravel 8.6, route controllers are defined in a little different manner. it contains the whole 'controller path' rather than just 'controller name'
sample
Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home');
this extension does not working with this type of route definition.