What is an instant visit in Inertia v3 and how does it improve page loads?
Answered by 3 creators across 5 videos
An instant visit in Inertia v3 is when the target page’s component is rendered immediately as you navigate, before the server has finished supplying the actual props. This lets you show the next screen instantly (often with placeholder or already-known layout props) while the server fetches the real data in the background. It eliminates the traditional whiplash of waiting for a full backend render during navigation, giving users an immediate sense of speed. Creators highlight that you can render the next component right away and then fill in the data once the server responds, which dramatically improves perceived performance and smoothness of transitions. As Pascal Baljet explains, instant visits render the component immediately and then later props arrive, while Inertia’s dev‑friendly SSR and built‑in HTTP client support ensure these transitions stay fast and robust. Nunomaduro and Laravel News both show how this pairs with optimistic UI and the new useHTTP hook to keep UI responsive even when server latency varies. In practice, you may pass in additional layout props or shared data to the next page to ensure a seamless look-and-feel while the actual data loads, further reducing perceived wait times during navigation.
- As Pascal Baljet explains, instant visits render the next component immediately and then fill in server props once they arrive, enabling faster perceived navigation.
- Nunomaduro points out that instant visits show the target component instantly, avoiding the delay of a full backend render and allowing data to populate afterward.
- Laravel News emphasizes that instant visits are part of a broader improvement set (optimistic updates, built-in HTTP, SSR dev experience) that together make transitions feel instant and resilient.
- Inertia’s videos note that you can pass component props during an instant visit to keep the UI coherent while the server processes the real data.
- The combination of instant visits with the new useHTTP and optimistic UI patterns reduces perceived latency and creates smoother navigation experiences, as discussed across the reviewed videos.
Source Videos

Why Inertia V3 Changes How You Build Laravel Apps with Pascal Baljet
"Inertia V3 uh we wanted to do three things. So um we made it smarter um simpler and also slimmer." [00:02:10]

Inertia v3 Deep Dive w/ Pascal Baljet
"InertiaJS is actually just a little layer between the back end and the front end." [00:06:10]

inertia v3 is really, really good
""So, if I click on this like bam, it's like instant boom."" 00:01:25

🔥 Inertia v3, New Laravel Site & New Spatie Package (IRL w/ Freek at Spatie) !yt
""Now with inertia v3 you can optimistically update the UI."" [00:12:33]