A simple product management application built with Laravel (Inertia.js + Vite) and React.
- Create, view, update, and delete products
- Upload product images
- Fully integrated user interface using React
- Seamless Laravel and React integration using Inertia.js
- PHP 8.1 or higher
- Node.js 18 or higher
- Composer
- Database (e.g., MySQL)
# 1. Clone the repository
git clone https://github.com/username/repo-name.git
# 2. Enter the project directory
cd repo-name
# 3. Install PHP dependencies
composer install
# 4. Install JavaScript dependencies
npm install
# 5. Copy the environment file
cp .env.example .env
# 6. Generate application key
php artisan key:generate
# 7. Set up the database
php artisan migrate
# 8. Build the front-end
npm run dev