Installation
Detailed installation instructions for your Laravel SaaS Starter Kit
Requirements
- → PHP 8.2 or higher
- → Composer
- → Node.js & NPM
Setup Steps
1. Extract ZIP File
Extract the downloaded ZIP file to your desired location:
cd laravel-saas-starter-kit-v1.0
2. Install PHP Dependencies
composer install
3. Install JavaScript Dependencies
npm install
4. Create Environment File
copy .env.example .env
5. Generate Application Key
php artisan key:generate
6. Run Database Migrations
php artisan migrate
7. Build Assets
npm run dev
8. Start Development Server
php artisan serve
Visit http://localhost:8000 or http://127.0.0.1:8000 to see your application.