Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

jameshagood's avatar

Shopify Applications with Laravel Experience

does anybody have experience building shopify applications with laravel?

If so, how do you handle logged in user specific things as far as saving those things to the database and building the relationship between that and the user that submitted it?

The session is relative to the store that installs the application but I am having trouble trying to figure out the best way to store the users and the data those users submit with the relationship between them.

0 likes
6 replies
jongore's avatar

Yes, you can build a Shopify-like platform using Laravel, a powerful PHP framework for web applications. Use Laravel's authentication system to handle user login and registration. Create models like User, Product, Order, and Cart, and establish relationships between them using Laravel's Eloquent ORM.

Design the database schema to store user-related data, such as a "users" table for user information and an "orders" table for order details. When a user performs an action, associate the data with their account using the authentication system. Retrieve user-specific data by querying the database based on the authenticated user's ID or other relevant criteria.

Please or to participate in this conversation.