I wanted to add a link to another page in a view, but I get the following error message enter image description here this is my web.php the route "listadopresos" doesn´t works use Illuminate\Support\Facades\Route; use App\Http\Controllers\CustomAuthController; Route::get(‘dashboard’, [CustomAuthController::class, ‘dashboard’]); Route::get(‘listadopresos’, [CustomAuthController::class, ‘listado’]); Route::get(‘login’, [CustomAuthController::class, ‘index’])->name(‘login’); Route::post(‘custom-login’, [CustomAuthController::class, ‘customLogin’])->name(‘login.custom’); Route::get(‘registration’, [CustomAuthController::class, ‘registration’])->name(‘register-user’); Route::post(‘custom-registration’, [CustomAuthController::class, ‘customRegistration’])->name(‘register.custom’); Route::get(‘signout’,… Read More Route [listadopresos] not defined IN laravel 8