inertia-laravel icon indicating copy to clipboard operation
inertia-laravel copied to clipboard

The Laravel adapter for Inertia.js.

Results 144 inertia-laravel issues
Sort by recently updated
recently updated
newest added

Hi, this is weird. - Just put `LOG_DEPRECATIONS_CHANNEL=stack` on `.env` and the error modal gets empty. - Remove this setting and error modal works.

So something cool I realised recently after my controllers grew substantially is that you don't have to pass an array to Inertia for the data, you can pass anything that...

This PR adds the `resources/views/pages` path to the default testing page paths. The reason for this is that I personally believe pages should be in the `resources/views/pages` directory instead of...

This PR will support a new header called `X-Inertia-Include-Data` which allows users to explicitly request lazy data. If you think that this is a good idea we could not only...

When Laravel Passport redirects back to an external URI after the OAuth 2.0 authorization flow, it renders an iframe of the external website, instead of actually redirecting to the external...

wontfix

Currently the testing framework allows you to test if a page component actually exists. This behaviour is configured in the `/config/inertia.php` file: ```php 'testing' => [ 'ensure_pages_exist' => true, 'page_paths'...

enhancement

When using a reverse proxy to remove the path prefix from a URL, the url property sent with the inertia response does not respect the HTTP_X_FORWARDED_PREFIX header. This causes the...

One thing which would be helpful in my specific application would be having a feature such as the view composers in Laravel. Currently I'm building a simple solution to do...

### Subject The inertia middleware ignores the methods comming from the vuejs to the laravel application, after they are redirected many times, they are all treated as `GET` methods. ###...