Muhammad Manamil on November 10, 2025
We want to help you start your new Laravel application easily. That’s why we offer starter kits. These kits give you a ready-made structure with routes, controllers, and views. They help you set up user registration and login quickly. The starter kits use Laravel Fortify for authentication.
You don’t have to use the starter kits if you don’t want to. You can also create your application from scratch by installing a fresh copy of Laravel. Either way, we are sure you will make something amazing!
| Kit | Front-end Stack | Best For | Notes |
|---|---|---|---|
| React | React (with TypeScript), Inertia, Tailwind | If you know React, want a fast Single Page App (SPA) feel, and like JavaScript tools | Uses Inertia to connect Laravel with React. |
| Vue | Vue 3 (Composition API), TypeScript, Inertia, Tailwind | If you prefer Vue and want a SPA experience | Also uses Inertia for Laravel integration. |
| Livewire | Livewire 3, Blade templates, Tailwind, Flux UI | If you want to stay mostly in PHP/Blade with minimal JavaScript | Works like traditional Laravel but gives a reactive UI. |
Tip: If you are not very experienced with front-end frameworks and want a fast backend-driven UI, Livewire might be a better choice. If you want the full JavaScript ecosystem, go with React or Vue.
Step 1: Install a Fresh Laravel Project
First, you need a new Laravel application. Open your terminal and run:
composer create-project laravel/laravel my-app
Replace my-app with your project name. This will create a new Laravel application with all the basic files.
cd my-app
This moves you into your project directory so you can start installing the starter kit.
Decide which starter kit you want to use:
Use Composer to install your chosen kit. For example:
composer require laravel/jetstream
php artisan jetstream:install livewirecomposer require laravel/jetstream
php artisan jetstream:install inertia --teamscomposer require laravel/jetstream
php artisan jetstream:install inertiaNote: The --teams option is only needed if you want team features.
After installing the kit, install front-end dependencies using NPM (Node Package Manager):
npm install
Then compile the assets:
npm run dev
This will compile your CSS and JavaScript files so the front-end works properly.
Open the .env file in your project folder. Set these values according to your database:
DB_DATABASE=your_database_name
DB_USERNAME=your_db_username
DB_PASSWORD=your_db_password
Then run migrations:
php artisan migrate
This creates all the tables your app needs (users, teams, etc.).
Run this command to start your Laravel app:
php artisan serve
Open your browser and go to:
http://127.0.0.1:8000
You should see your new Laravel app with the starter kit installed.
Congratulations! You now have a fully working Laravel app with a starter kit. From here, you can start building your features.

Featured Posts
Categories
November 10 2025
Laravel 12 Routing – Defining Routes in bootstrap/app.phpLaravel 12 introduces a new, cleaner way to define routes directly in bootstrap/app.php. This guide explains how the new routing system works, with step-by-step examples, migration tips, and best practices for integrating inline and traditional route definitions seamlessly.
November 04 2025
How to Install Composer for Ubuntu and Windows Step-by-Step GuideIn this post you can learn how to easily install Composer on both Ubuntu and Windows with this detailed step-by-step guide.
December 01 2025
DNS Checker Tool - Verify Your DNS Records and IP AddressIf you're managing a website, ensuring that your DNS records are correctly configured is crucial for maintaining its performance and availability. With our DNS Checker Tool, you can easily verify your DNS records and check your IP address to troubleshoot any issues that may arise.
© 2026 — Revision. All Rights Reserved.