What problem does it solve? Connecting a React, Vue, Svelte, or Inertia frontend to a Laravel backend often means hardcoding URLs and manually tracking route changes, which leads to broken links and TypeScript errors. This Skill uses Laravel Wayfinder to auto-generate typed route functions so frontend code always stays in sync with backend routes. ## Core Features & Use Cases - Typed Route Generation: Run php artisan wayfinder:generate to produce tree-shakeable TypeScript functions for every controller action and named route. - Flexible Call Patterns: Use .url(), .get(), .post(), .form(), and query parameter options to build URLs, HTTP method calls, and HTML form attributes. - Inertia Integration: Pass store.form() directly into Inertia's <Form> component for end-to-end typed form submissions. - Use Case: When building a lottery ticket purchase page in an Inertia React app, import the generated store action from the controller and wire it to a form instead of hardcoding /tickets endpoints. ## Quick Start Ask the AI to wire up a frontend form to a Laravel controller using Wayfinder typed route functions instead of hardcoded URLs.