Hey everyone,
I recently started a new project using Laravel 12 + Inertia (React), and I noticed something different compared to a project I built a few months ago.
In my previous setup, I was able to use the route('trainees.index') helper directly inside React components — for example:
<Link href={route('trainees.index')}>Trainees</Link>
However, in this new project (fresh Laravel 12 installation with Inertia starter kit), the route() helper isn’t available anymore.
Did something change recently in how Inertia integrates with Laravel routes?
Was the route() helper previously provided automatically via Ziggy or some other package that’s no longer included by default?
Thanks in advance for any insights!