Hello everyone? I have a strange error under Laravel 10.28 that I don't understand.
This is my Route : Route::get('notes/rattrapage',[NotesController::class,'rattrapage'])->name('notes.rattrapage');
The controller method :
public function rattrapage()
{
$filieres = Filiere::with('classes')->where('ecole_id',Auth::user()->ecole_id)->get();
return view('notes.rattrapage', compact('filieres'));
}
When i call the Route like this : <li><a href="{{route('notes.rattrapage')}}"><i class="fa fa-circle-o"></i> Rattrapage</a></li>
I have tried :
php artisan cache:clear
php artisan route:clear
and composer update
but the error remains