What problem does it solve? Calling Laravel backend routes from TypeScript frontend code often leads to hardcoded URL strings, broken links after route changes, and no type safety. This Skill provides guidance for using Laravel Wayfinder to generate typed route functions that stay synchronized with your backend routes. ## Core Features & Use Cases - Route Generation: Run php artisan wayfinder:generate to regenerate TypeScript route functions after backend route changes, with an optional --with-form flag for form helpers. - Type-Safe Imports: Import named controller actions and routes from @/actions and @/routes for tree-shaking and compile-time safety. - Inertia Integration: Combine Wayfinder route functions with Inertia's useForm to submit forms directly to typed controller endpoints. - Use Case: When building a React or Vue page that posts to a Laravel controller, import store from the generated actions file and call form.submit(store()) instead of hardcoding the endpoint URL. ## Quick Start Ask the assistant to generate Wayfinder routes and show how to import a controller action into your TypeScript component.