inertia-laravel
inertia-laravel copied to clipboard
The Laravel adapter for Inertia.js.
## Problem The request that is made for the Laravel Application, is being redirected as part of the application main logic, but inertiajs methods seems to be lost in the...
Consider a response that shouldn't contain an element of certain format, ie ``` { data: { fields: [{ id: 'foo'}] } } ``` is ok, but ``` { data: {...
I love the fact that, thanks to @claudiodekker , we can now test Inertia out of the box. But I would love to see support for suffixed components. For example,...
see https://github.com/laravel/framework/pull/50617
#592 fixed the long standing double path issue but it introduces a bug where the query string is URL encoded. This PR fixes that by manually building up the URL...
I am trying to display a progress bar for one my pages. According to the docs, I can use `router.on('start')` and pass in `nProgress.start()` as a callback. However, that does...
How I can render on client? ### Version: - `@inertiajs/vue3` version: ^1.0.0 ### Describe the problem: ``` import require$$0 from "vue"; ^^^^^^^^^^ SyntaxError: The requested module 'vue' does not provide...
I deployed Laravel + Inertia website to our VPS. Supervisor take care about running php artisan inertia:start-ssr. But every 3-4 days we get this error. Any idea what cause it?...
When i'm using the Inertia Router start event, all previous events gets logged too. I'm using the following code: ``` router.on("start", (event) => { console.log(event); console.log(`Navigated to ${event}`); console.log("--------------"); });...
I added the method `requestProp` (name open for discussion 😉) to the AssertableInertia class which let you easy test LazyProps. ```php /** @test */ public function test_props(): void { $this...