How to use React js in blade template
问题 I would like to use React js as a front-end for my laravel project . So i did the preset with: php artisan preset react Now i would like to know, how react component should be implemented in my blade views so they can access data passed to those views via controllers... For exemple, in my homeController i pass some data: return views('theview')->with('datas',$datas); In theview.blade.php i can access them like this: {{ $datas }} but how can i use this to update react component? 回答1: One of