Is is possible to use Inertia and blade on same project
I have an existing project that I want to integrate inertiaJs into. Considering it's an existing project, I cant just move all the pages into Vue components overnight. Is it possible to serve some pages using Inertiajs and other pages will continue to be served using blade while I progressively work on serving all the pages with inertiajs?
I don't really know inertiajs, I just try soon. What I can tell you is that inertiajs is an easy way to use all advantages of VueJS without loosing all advantages of Laravel (routing, protecting the routes with the middlewares, authentication, ...).
In the controller you have to user return Inertia:: instead of what you generally use. So my opinion is that you can progressively migrate your application to VueJS with InertiaJS and then some views will be generated by VueJS and other views by blade.