[Vuejs]-Dominate vue router with Laravel router

0👍

How about you try something like

Route::get(
    '/admin/{view?}',
    "AdminController@index"
);

or it might be worth looking into something like InertiaJS.

Let me know if you have any further queries.

Leave a comment