Missing required parameter for [Route: xxxxx] – Laravel
I am having this route setup on my laravel app which uses the FooController which uses an __invoke method Route::get('/foos/{foo:baz_param}', FooController::class)->name('foos'); I am also having a link in my blade template which is this <a href="{{ route('foos', ['baz_param' => $foo->baz_param])…