inertia-laravel
inertia-laravel copied to clipboard
The Laravel adapter for Inertia.js.
When using laravel jetstream and enabling SSR the page will render for a second or two and then go blank the reason for this is due to using the 'Head'...
Hello. I'm trying to host Laravel app behind reverse proxy using Nginx. The routes are working as expected within Laravel routes itself but when I make inertia response, the url...
I'm working on an app where I have lots of `shared` props to `lazy load` coming from different sources (modules). I've noticed I have a growing number of `Closures` that...
**Laravel: 8.65 inertiajs/inertia-laravel: 0.4.3 laravel/jetstream: 2.4** I have a middleware to check whether a user is an admin or has a team role. The middleware redirects based on admin or...
Lazy loading the revenue data doesn't work when it's nested. See example below. See DashboardController. return Inertia::render('Dashboard', [ 'charts' => Inertia::lazy(fn () => [ 'revenue' => Inertia::lazy(fn () => (new...
By example, if a component is not imported, normally, the editor show an error. The same if a variable is not defined, among others. But with the installation of Laravel...
This is a fix for the error described in issue #359
It seems anytime I do a "manual visit" via Inertia that the subsequent changes expected via hot loading stop coming in. What's interesting is that it works the first time,...
This PR adds an `inertia.ssr.timeout` option that allows for specifying the `connect_timeout` of the `Http` gateway. This is useful for developing locally without the SSR server enabled, as we can...
Now that SSR is possible with Inertia.js, it opens up some really interesting possibilities when it comes to testing an Inertia app. It now seems possible to have the tests...