A comprehensive Laravel starter kit by Modus Digital for quickly bootstrapping new Laravel applications with built-in features and best practices.
This starter kit has a couple default useful functionalities to easily get started with a new project. The following features are included in this starter kit:
- Build on Laravel 12 and Livewire
- Filament Admin panel intergration
- Managing Users
- Translation manager
- Backup manager
- RBAC manager
- Health statistics
- Mail intergration
- File-based routing using Laravel Folio
- Livewire Volt intergration
- Two factor authentication using any Authenticator app
- PHP 8.3 or higher
- Composer
- Node.js & (P}NPM (PNPM Prefered)
npm install --global corepack@latest && corepack enable pnpm # Using corepack
npm install --global pnpm@@latest-10 # Using npm directlycomposer global require laravel/installer
laravel new <project name> --using=modus-digital/laravel-starter-kit
cd <project name>git clone https://github.com/modus-digital/laravel-starter-kit.git your-project-name
cd your-project-name
composer install
pnpm install# Copy environment file
cp .env.example .env
# Generate application key
php artisan key:generate
# Create SQLite database (or configure your preferred database in .env)
touch database/database.sqlite
# Run migrations
php artisan migrate --seedStart the development server with a single command:
composer devThis command starts:
- Laravel development server
- Queue worker
- Vite for front-end assets
Add The site to Laravel Herd and run Vite
pnpm run devRun the test suite:
composer testThe starter kit includes several code quality tools:
- PHP CS Fixer for code style
- Laravel Pint for Laravel-specific style
- Larastan for static analysis
- Rector for automated refactoring
MIT
Created and maintained by Modus Digital.