Level 3
I would like to know this as well. Not a lot of Nova People out there yet.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I try to build an app with laravel nova as backend and vuejs as front end . im using router-vue for my vue route management i need to setup two main routes that catch all the nova routes and another one to catch all the vue-router routes so far i came up with this:
Route::get('/{any}')->where('any', '^(?!admin|nova-api).*$');
Route::any('/vue/{any}', 'ApplicationController')->where('any', '.*');
i can catch all the nova routes but sadly i can't catch the vue router how can i do it ?
Please or to participate in this conversation.