Get Started

Quick start guide to set up your Laravel SaaS Starter Kit

Quick Start

1

Extract the downloaded ZIP file

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 the development server

php artisan serve

✅ You're all set!

Visit http://localhost:8000 or http://127.0.0.1:8000 to see your application.