Which Front-End Technology goes with Laravel as Backend?
Hi friends,
I have small application running on laravel. The UI/ UX is not great and I'm thinking of using any modern framework like react node or vue with laravel.
Can you suggest which one goes well with laravel? I did some research but want to hear few first hand experience comparison of framework.
Both goes well with laravel. I guess it depends with which you have more experience.
Check out https://inertiajs.com/ It is nice adapter to connect laravel with react, vue, svelte
@corxick You can use either. Laravel is a back-end framework and React, Vue, etc are front-end libraries. They’re different parts of the stack and in no way intrinsically linked.
Vue is a popular choice to use with Laravel though, so you’ll find lots of tutorials on using Vue with Laravel.
You can use any frontend technology you want with Laravel. You will work with Laravel API and the frontend will make CRUD actions via the API.
What is a pretty good idea is to use a JS framework like VueJS or React and use InertiaJS which simplify very much the code for authentication, routing, ...