We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ran: php artisan route:list --json in project folder, and received the below error.
php artisan route:list --json
ReflectionException Class "App\Http\Controllers\Admin\ReportController" does not exist at Laravel-Ecommerce\vendor\laravel\framework\src\Illuminate\Foundation\Console\RouteListCommand.php:234 230▕ if ($this->isFrameworkController($route)) { 231▕ return false; 232▕ } 233▕ ➜ 234▕ $path = (new ReflectionClass($route->getControllerClass())) 235▕ ->getFileName(); 236▕ } else { 237▕ return false; 238▕ }
File not found at: app/Http/Controllers/Admin
routes/admin.php:
16: use App\Http\Controllers\Admin\ReportController; 73: Route::get('/report', [ReportController::class, 'index'])->name('report');
After commenting out above 2 lines: Class "App\Http\Controllers\Admin\SmptController" does not exist
Class "App\Http\Controllers\Admin\SmptController" does not exist
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Ran:
php artisan route:list --json
in project folder, and received the below error.File not found at: app/Http/Controllers/Admin
routes/admin.php:
After commenting out above 2 lines:
Class "App\Http\Controllers\Admin\SmptController" does not exist
The text was updated successfully, but these errors were encountered: