We're planning to build an application using ReactJs as our frontend and laravel as our backend(REST API).
As we were doing some researches about how to integrate these two, we've encountered the library react-laravel.
Now I wanna know what are the pros and cons of using such library over vanilla react and laravel. is there any limitations or any bugs we might encounter ? will it speed up development or we might need to spend more time learning it ? will it change the react's implementation method in any way ? ...
*we're using redux and react-router.
*I'm an (almost) experienced react developer
I did not use react-laravel personally, however the different I see about it is the pre-rendering for the component.
However, on a personal preference, I would not tie my application to a third party component that is not controlled by any of the two entities. Also, any pre-rendering you would like to do, can be done easily, and you should have full control on what runs at client-side, and what runs on server-side.