Something important when creating routes in Laravel is never to use routes consisting of variables only. Make them unique, like so -
Don't: /{id}/{title}
/{id}/{title}
Do: /cat/{id}/{title}
/cat/{id}/{title}