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 generates type-safe route functions so frontend code always matches backend routes. ## Core Features & Use Cases - Typed Route Generation: Run php artisan wayfinder:generate to produce importable TypeScript functions for every Laravel controller action and route. - Flexible Helpers: Use .url(), .get(), .post(), .form(), and query parameter support to build URLs, HTTP calls, and HTML form attributes. - Tree-Shakable Imports: Import named functions from @/actions or @/routes so unused routes are excluded from the bundle. - Use Case: When wiring a React form to a Laravel PostController@store endpoint, import store from @/actions/App/Http/Controllers/PostController and spread store.form() onto an Inertia <Form> component instead of hardcoding /posts. ## Quick Start Ask the AI to connect your React form to the Laravel post creation endpoint using Wayfinder route functions instead of hardcoded URLs.