Route 404 in laravel11. Is there any rule to prioritize route in web.php
My issue is, even if I added route in web.php then also it gives me 404 not found. My route file as below. <?php use IlluminateSupportFacadesRoute; use AppHttpControllersStudentController; Route::get('/students', [StudentController::class, 'index'])->name('students.index'); Route::get('students/export/excel', [StudentController::class, 'exportExcel'])->name('students.export.excel'); Route::get('students/export/pdf', [StudentController::class, 'exportPdf'])->name('students.export.pdf'); Route::get('students/{student}', [StudentController::class, 'show'])->name('students.show');…