PHPackages                             hubertalva/laravel-vermicelli-starter-kit - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. hubertalva/laravel-vermicelli-starter-kit

ActiveProject[Framework](/categories/framework)

hubertalva/laravel-vermicelli-starter-kit
=========================================

An opinionated Laravel starter kit for building modern Inertia and Vue applications.

v1.0.2(1mo ago)113MITVuePHP ^8.3CI passing

Since Jan 7Pushed 1mo agoCompare

[ Source](https://github.com/HubertAlva/laravel-vermicelli-starter-kit)[ Packagist](https://packagist.org/packages/hubertalva/laravel-vermicelli-starter-kit)[ RSS](/packages/hubertalva-laravel-vermicelli-starter-kit/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (47)Versions (6)Used By (0)

Laravel Vermicelli Starter Kit
==============================

[](#laravel-vermicelli-starter-kit)

A clean, opinionated Laravel starter kit built to speed up development and provide a solid foundation for real-world applications.

Built with Laravel, Inertia.js, and Vue, with a strong focus on developer experience and real-world structure.

Requirements
------------

[](#requirements)

- PHP 8.3+
- Composer
- Node.js &amp; NPM
- MySQL or SQLite

Installation Steps
------------------

[](#installation-steps)

### 1. Install the Laravel Installer (if not already installed)

[](#1-install-the-laravel-installer-if-not-already-installed)

```
composer global require laravel/installer
```

Make sure the Composer bin directory is in your system's PATH.

### 2. Create a New Laravel Project with Vermicelli Starter Kit

[](#2-create-a-new-laravel-project-with-vermicelli-starter-kit)

```
laravel new my-project --using=hubertalva/laravel-vermicelli-starter-kit
```

This command will:

- Create a new Laravel application
- Install the Vermicelli Starter Kit
- Set up all necessary dependencies

### 3. Navigate to Your Project

[](#3-navigate-to-your-project)

```
cd my-project
```

### 4. Configure Your Database

[](#4-configure-your-database)

Edit the `.env` file and update the database connection details:

```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database_name
DB_USERNAME=your_database_username
DB_PASSWORD=your_database_password

```

### 5. Configure Domain and Admin Subdomain

[](#5-configure-domain-and-admin-subdomain)

Vermicelli is designed to work with a main domain and an admin subdomain.

Update the following values in your .env file:

```
APP_URL=http://yourdomain.local
APP_DOMAIN=yourdomain.local
SESSION_DOMAIN=.yourdomain.local

```

#### Local development (recommended)

[](#local-development-recommended)

Add domain aliases to your system hosts file:

```
127.0.0.1 yourdomain.local
127.0.0.1 admin.yourdomain.local

```

If you are using Laravel Valet, Laragon, or Docker, configure the domain according to your environment instead of editing the hosts file manually.

#### Optional: Web Server Configuration

[](#optional-web-server-configuration)

Depending on your local setup, you may need to ensure that both the main domain and the admin subdomain point to the project’s `public/` directory.

Both domains should resolve to:

`/path/to/your-project/public`

If one of the domains shows a 404 or loads the wrong site, this is usually the cause.

> [Example on Ubuntu with Apache](/config-domain-example.md)

### 6. Start the Development Server

[](#6-start-the-development-server)

```
composer run dev
```

Your application will be available at:

-
-

> Vermicelli uses subdomains for the admin panel by default. Configuring a local domain early helps ensure authentication, sessions, and cookies work correctly across subdomains.

What’s Included
---------------

[](#whats-included)

### Authentication &amp; Authorization

[](#authentication--authorization)

- Role and permission system ready to use
- Structured access control for administrative features

### Admin Panel

[](#admin-panel)

- Dedicated admin layout
- Admin panel served via subdomain (e.g. `admin.yourapp.com`)
- Example CRUD implementation for a **Post** model
- Fully functional views for create, edit, list, and delete actions

### Layouts &amp; Components

[](#layouts--components)

- Basic main layout for the public-facing site
- Admin layout for internal management
- Reusable layout components
- Common form components to speed up UI development

### SEO Basics

[](#seo-basics)

- Meta description support
- Open Graph (OG) tags
- Simple, extendable SEO structure

### User Experience

[](#user-experience)

- Toast notifications for user feedback
- Consistent UI patterns across the application

### Localization

[](#localization)

- Spanish localization is included by default

### Data &amp; Structure

[](#data--structure)

- Clean data handling approach
- Database snapshot and restore capabilities for development and testing

Purpose
-------

[](#purpose)

This starter kit is meant to be a **starting point**, not a full framework.
It provides common building blocks so you can focus on building features instead of setting up the same things over and over again.

License
-------

[](#license)

The Laravel Vermicelli Starter Kit is open-sourced software licensed under the MIT license.

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance90

Actively maintained with recent releases

Popularity8

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~18 days

Total

5

Last Release

52d ago

PHP version history (2 changes)v1.0.0-alphaPHP ^8.2

v1.0.2PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/9ea38fa58692204ee2391093460d579e00a3c54455c07eb8447e364704dcbfb2?d=identicon)[hubertalva](/maintainers/hubertalva)

---

Top Contributors

[![HubertAlva](https://avatars.githubusercontent.com/u/110942459?v=4)](https://github.com/HubertAlva "HubertAlva (50 commits)")

---

Tags

spatieframeworklaravelinertiajsstarter-kitvermicelli

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/hubertalva-laravel-vermicelli-starter-kit/health.svg)

```
[![Health](https://phpackages.com/badges/hubertalva-laravel-vermicelli-starter-kit/health.svg)](https://phpackages.com/packages/hubertalva-laravel-vermicelli-starter-kit)
```

###  Alternatives

[typicms/base

A modular multilingual CMS built with Laravel, enabling developers to manage structured content like pages, news, events, and more.

1.6k20.3k](/packages/typicms-base)[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

1.4k2.7k](/packages/nasirkhan-laravel-starter)[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3691.5k](/packages/codewithdennis-larament)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
