Wow, @ianlandsman is an animal and already has yesterday's @LaraconOnline talks up! If you missed my talk on @inertiajs, you can now login and watch it! 🤟
Our package ships the support bubble/form as a Blade component but you can use it in an @inertiajs powered app too.
Just add it to your Inertia template. Here’s how we did it at @flareappio to only show it to authenticated users.
If you are using @inertiajs and @laravelphp, did you know you can pass Laravel's Resources in your render data?
It'll be converted to JSON in your Vue.js page props, a nice way to use Laravel's built-in structures and separations.
Using Inertia JS in combination with Laravel Echo is so ridiculously good to create an outstanding user experience.
The best thing is that I don't need to fiddle around with the component state.
Inertia.reload - done 😎
I'm enjoying @inertiajs more than I expect, Is so easy to create all your views with Vue with all the advantages that Vue adds.
Laravel + JetStream + InertiaJS + TailwindCSS/UI is a killer combo.
Just published InertiaJS on Rails #5: Forms; Thanks for everyone's patience! Let's learn how to wire up forms in @inertiajs & @rails. And since I took so long, I'll offer a sneak preview: next week in #6, we'll finally address a popular request.. testing!
youtube.com/watch?v=jrN1MI0g…
.@inertiajs promotes itself as great for devs who are used to server-side rendered apps and want to move to JS Single Page App goodness. but I can attest that it's ALSO great the other way round: as a Single Page App person, this is a better way to handle routing & API calls
The best part about @inertiajs is that you do not need to learn anything new. It’s not a framework.
Keep writing controllers, do redirects, handle server side validation. It’s just perfect.
I’m currently working with @inertiajs and it’s such a joy to use!
I initially wanted to go for Livewire, but as I already knew that I needed some JS heavy pages, going for Inertia was the better option 👌
Currently building a shareable habit tracking tool with @laravelphp, @tailwindcss and @inertiajs. I am quickly falling in love with this stack. Makes me feel super productive 👍
Learnt something interesting tonight regarding how @inertiajs handles redirects to another website. It returns a 409 response with the destination URL in a header and then redirects the window to this URL. Very impressive how this is implemented. #inertiajs#javascript