Bad query and url not working in Laravel 10.28

44 Views Asked by At

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 get error message 404 : first error

Second error

I have tried : php artisan cache:clear php artisan route:clear and composer update but the error remains

0

There are 0 best solutions below