I started a project few months ago with Laravel and for a specific feature: jQuery (with over 6-7k lines) that I dropped because I was not satisfied at all with maintenability of jQuery.
There will be some features like members account, news and this application. I switched to React to build this application from scratch but I want the other features of the website managed by Laravel (I won't need any JavaScript).
My question is : is it fine to build some blade views (home, account) and one view for this application (application.blade.php) with only some id to manage my React components?
<div class="container">
<div id="myc1"></div>
<div id="myc2"></div>
....
</div>
Or is it a very bad practice/idea?