I am creating a project in laravel, I have created a driver, and when I try to link it to the path, it throws me an error that does not find it. I show you the code CONTROLLER: Home
namespace App\Http\Controllers\Home;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Http\Request;
class Home extends Controller
{
public function base(); //controlador home
{
return view('index');
}
}
WEB APP
Route::get('/','Home.php@base');