A full-stack Product Management System built with React (frontend) and Laravel (backend). It offers complete CRUD functionality for managing products, powered by seamless API integration between the frontend and backend.
Create: Add new products to the system.
Read: View all products with detailed information.
Update: Modify existing product details.
Delete: Remove products from the system.
Frontend: React + Vite
Backend: Laravel (PHP)
Database: MySQL (or other supported databases)
API: RESTful API for communication between frontend and backend
-
git clone https://github.com/hacker1649/rl-pro.git
-
cd backend
-
composer install
-
cp .env.example .env php artisan key:generate php artisan migrate
-
php artisan serve
-
cd frontend
-
npm install
-
npm start
Ensure the frontend is correctly connected to the backend API. You might need to update API URLs in the React app based on the environment or local server.
Once the frontend and backend are running, you can navigate to the frontend app in your browser and start managing products by adding, viewing, updating, and deleting products.