[Vuejs]-Inertia js redirect to laravel blade file properly

0👍

Inertia renders non-inertia responses as a popup since it can’t insert it into the vue app as a component, you should either use blade entirely (there is a breeze stack for blade) or use vue component only.

There is a way do a full page redirect reload by calling Inertia::location($dashboardUrl) instead of redirect() but it’s meant to for external redirects not within the app.

Leave a comment