-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Description
I have two controllers with the same name RequestController but in a different directory, so they have different namespaces.
In the route file:
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\Api\Admin\RequestController;
Route::get('', [RequestController::class, 'getRequests']);When I click on getRequests to open the controller, the wrong controller (App\Http\Controllers\Admin\RequestController) will open instead of App\Http\Controllers\Api\Admin\RequestController.
Metadata
Metadata
Assignees
Labels
No labels