I am using nwidart laravel package and I am trying to call the Class inside the Modules/Dining
I am sure to correctly reference it but the error always returns Target class [Modules\Dining\Http\Controllers\DiningController] does not exist.
//Modules\Dining\Http\Controllers\DiningController
Route::get('/', [ControllersDiningController::class, 'index']);
Tried also Route::get('/', [Modules\Dining\app\Http\Controllers\DiningController::class, 'index']);
Is this some composer issue or whaaat?