What problem does it solve? Building Vue frontends on top of Laravel backends often means choosing between a full SPA with an API layer or losing SPA-like navigation. This Skill provides guidance for building Inertia.js v3 Vue applications, covering page components, forms, navigation, and modern v3 features without maintaining a separate API. ## Core Features & Use Cases - Page Components & Navigation: Create Vue pages in resources/js/Pages and navigate with <Link> or the router, including prefetching and programmatic visits. - Form Handling: Build forms with the <Form> component or the useForm composable, with error display, processing states, and automatic reset options. - Inertia v3 Features: Use deferred props, optimistic updates, instant visits, layout props via setLayoutProps, polling with usePoll, WhenVisible lazy loading, InfiniteScroll, and standalone HTTP requests via useHttp. - Use Case: When adding a dashboard page to a Laravel + Vue app, use this Skill to render deferred stats with skeleton states, poll for live metrics, and submit forms with optimistic updates. ## Quick Start Ask the AI to create an Inertia Vue page component with a form that submits to a Laravel route and handles validation errors.