inertia-laravel
inertia-laravel copied to clipboard
The Laravel adapter for Inertia.js.
The first check that's done in the default `version` method of the middleware is to check if `app.asset_url` exists. This was added to support Laravel Vapor, see the comment in...
Hi I always struggle to remember the correct syntax to test for props in my inertia responses. Sometimes Copilot helps me a bit, but it also seems to struggle remembering...
Since [v1.1.0](https://github.com/inertiajs/inertia-laravel/releases/tag/v1.1.0) release (with changes from #625) my IDE has a big problem with understanding where `Illuminate\Http\Request` is implemented.   It looks like `[_ide_helpers.php](https://github.com/inertiajs/inertia-laravel/blob/1.x/_ide_helpers.php)` is propagating its own classes...
I found 418 and 423 hydrating errors on my site build so I tested it on a fresh install in order to start adding components and find the issue. But...
Hello! I'm tring run ssr in exist project laravel+inertia+react(typescript). All made by https://inertiajs.com/server-side-rendering. Run "npm run build" without error, but when I started "php artisan inertia:start-ssr", I get error: ```...
Another attempt of #652 I recently noticed laravel/framework#52301, where most of the md5 calls will be replaced with xxhash, which is much faster than md5. For Inertia's asset versioning we...
Now that most people use `Vite`, why don't we check `Vite` manifest file before `Mix`'s for performance?
Laravel 6 is no longer supported. https://github.com/inertiajs/inertia-laravel/pull/594 We can safely delete this code.
Getting a error when using ssr rendering. ive run php artisan ziggy:generate ``` Starting SSR server on port 13714... Inertia SSR server started. Retail TypeError [ERR_INVALID_ARG_TYPE]: The "chunk" argument must...
This PR resolves a regression in 2.x where shared data closures with arguments could not be resolved. This patch ensures that the closures are resolved using `App::call()`. e.g., ```php Inertia::share('query',...