I would really like to start developing Laravel application with React.js but there are questions, how React should be actually integrated with Laravel? For example how to use React components on Laravel side, how to do server-side rendering with initial data? Maybe even routing? Are Laravel and React routings separate or are they somehow combined?
Maybe a single lesson or even series about React.js with Laravel?
You would use Laravel to provide the base view (index.blade.php) which would include the JS, but then after that all the views would be handled by React.
From there, you would use Laravel singularly as an API only. To get server-side rendering (Isomorphic) is another story. I'm curious to see PHP implementations of this using React PHP.