skip to Main Content

PHP Laravel Target class [AuthRegisterController] does not exist

I have this error and don't know where I went wrong, please help me My controller: <?php namespace AppHttpControllersAuth; use AppHttpControllersController; use AppProvidersRouteServiceProvider; use AppModelsAccount_Register; // Chắc chắn rằng bạn đã import model User use IlluminateSupportFacadesHash; use IlluminateHttpRequest; class RegisterController…

VIEW QUESTION

Reactjs – Application fails to start when I add a custom method in Repository interface

My application runs fine when it doesn't include any custom method in Repository. The moment I add a custom repo method in repo interface, it gives exceptions and application fails to start. package com.library.repo; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query;…

VIEW QUESTION

laravel controller not detected

I got a laravel proyect, but when i run php artisan route:list thows this error: ReflectionException Class "CuboController" does not exist at C:UsersricardevSistemaCubosLSvendorlaravelframeworksrcIlluminateFoundationConsoleRouteListCommand.php:234 230▕ if ($this->isFrameworkController($route)) { 231▕ return false; 232▕ } 233▕ ➜ 234▕ $path = (new ReflectionClass($route->getControllerClass())) 235▕…

VIEW QUESTION
Back To Top
Search