## Inertia Core - Inertia.js components should be placed in the `resources/js/Pages` directory unless specified differently in the JS bundler (vite.config.js). - Use `Inertia::render()` for server-side routing instead of traditional Blade views. - Use `search-docs` for accurate guidance on all things Inertia. // routes/web.php example Route::get('/users', function () { return Inertia::render('Users/Index', [ 'users' => User::all() ]); });