DEV Community

Discussion on: Refactoring #1: Using ternary and null coalescing operators in PHP

Collapse
 
askoflor profile image
askoflor

my problem is the following I want to build a web application with reactjs for the background tend and laravel for the backend so to do it I want to separate it into two projects a reactjs project for the background tend and a laravel project for the backend I want it do in the perspective of obstructing application loading and SEO referencing so I would like to know if this is a good practice

Thread Thread
 
abhinav1217 profile image
Abhinav Kulshreshtha

Your approach is correct.
Make 2 projects, Laravel API, (or lumen) and a React frontend.

Serve React site (node server) on your-domain.com, and fetch data from api.your-domain.com will be your php-laravel endpoint.

Once you have done that, you can use server-side rendering ( and later a technique called hydration ) to your first load, that will help with SEO.
SEO is mostly related to what is served on front, so you need to work on SEO techniques on your react front-end. Depending on your need you might not need to do anything seo related in laravel api except for making sure http codes are proper.

Thread Thread
 
askoflor profile image
askoflor

thank you for your contribution