## Inertia - Inertia.js components should be placed in the ___SINGLE_BACKTICK___resources/js/Pages___SINGLE_BACKTICK___ directory unless specified differently in the JS bundler (___SINGLE_BACKTICK___vite.config.js___SINGLE_BACKTICK___). - Use ___SINGLE_BACKTICK___Inertia::render()___SINGLE_BACKTICK___ for server-side routing instead of traditional Blade views. - Use the ___SINGLE_BACKTICK___search-docs___SINGLE_BACKTICK___ tool for accurate guidance on all things Inertia. // routes/web.php example Route::get('/users', function () { return Inertia::render('Users/Index', [ 'users' => User::all() ]); });