- PHP >= 8.1
- Composer
- MySQL or other supported database
- Node.js & npm (for frontend assets)
-
Clone the repository
git clone https://github.com/yishakdev/laravel-starter-kit.git cd laravel-starter-kit -
Install PHP dependencies
composer install
-
Copy
.envfile and configurecp .env.example .env
- Update database and other environment settings in
.env.
- Update database and other environment settings in
-
Generate application key
php artisan key:generate
-
Run migrations
php artisan migrate
-
Install frontend dependencies
npm install npm run dev
-
Start the development server
php artisan serve
Visit http://localhost:8000 in your browser.
- Ensure all prerequisites are installed.
- Check
.envconfiguration for database connection issues.