PHPackages                             rokde/laravel-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. rokde/laravel-starter-kit

ActiveProject[Framework](/categories/framework)

rokde/laravel-starter-kit
=========================

The skeleton application for the Laravel framework.

1.0.0(11mo ago)510[12 PRs](https://github.com/rokde/laravel-starter-kit/pulls)MITVuePHP ^8.2CI passing

Since May 21Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/rokde/laravel-starter-kit)[ Packagist](https://packagist.org/packages/rokde/laravel-starter-kit)[ Fund](https://www.buymeacoffee.com/robertkummer)[ Fund](https://www.paypal.me/rok)[ RSS](/packages/rokde-laravel-starter-kit/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (19)Versions (28)Used By (0)

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

[](#laravel-starter-kit)

Usage
-----

[](#usage)

`laravel new --using=rokde/laravel-starter-kit`

What is inside?
---------------

[](#what-is-inside)

A customized version with the following things:

### Repository

[](#repository)

- PHP 8.4
- Laravel 12 (latest minor)
- [laravel/vue-starter-kit](https://github.com/laravel/vue-starter-kit)
    - using [Inertia v2](https://inertiajs.com/) and [shadcn-vue](https://www.shadcn-vue.com/) components
- Vue 3 + Vite 7
- Tailwind CSS v4
- Ziggy v2
- Pest v4 (incl. browser + type-coverage plugins)
- Rector v2 + Larastan v3
- Node 22 compatible toolchain
- pint.json with strict rules
- repository dependency health with Dependabot (weekly)
- automatic linting and testing on push (CI)
- automatic CHANGELOG.md update on releases
- [nunomaduro/essentials](https://github.com/nunomaduro/essentials) for Laravel defaults (see [essentials.php](config/essentials.php))
- [rector](https://github.com/rectorphp/rector) for instant upgrades and automated refactoring

### IDE support

[](#ide-support)

- [barryvdh/laravel-ide-helper](https://github.com/barryvdh/laravel-ide-helper)
- JetBrains Junie guidelines

### Starter Kit features

[](#starter-kit-features)

- internationalization (en, de)
- static pages based on CommonMark Markdown files, with FrontMatter support and localized
    - in `resources/markdown` are the md files located
    - localized version can have a `*.[locale].md` extension (e.g. `.de.md`)
- using UseFactory class attribute for eloquent models
- [modules](https://github.com/InterNACHI/modular) supported for domain driven design
    - [analytics](app-modules/analytics/README.md) - Track and visualize user interactions with elements in the application
    - [foundation-layout](app-modules/foundation-layout/README.md) - Configure and switch between different layout styles
    - [notification](app-modules/notification/README.md) - Manage user notification preferences and delivery methods
    - [passkey](app-modules/passkey/README.md) - Enable secure, passwordless authentication using WebAuthn
    - [todo](app-modules/todo/README.md) - Create, manage, and track todos within workspaces
    - [workspace](app-modules/workspace/README.md) - Create and manage workspaces for team collaboration

Features
--------

[](#features)

### Laravel Features and Configuration

[](#laravel-features-and-configuration)

- Register a user
- Login a user
- [User must verify email](https://laravel.com/docs/verification#model-preparation)
- various settings configured in the [AppServiceProvider::boot()](app/Providers/AppServiceProvider.php) method
- Localized views in english and german
- [database notifications](https://laravel.com/docs/notifications#database-prerequisites) already set up
- Profile settings including locale settings
- Imprint, Terms and Policy templates supported
- displaying the password rules on registration and password change
- reveal passwords on password input elements
- User has locale and timezone for displaying the dates correct
    - provide a `inApplicationTimezone` and `inUserTimezone` method for each carbon instance

### Build with DDD

[](#build-with-ddd)

`php artisan make:module [MODULE_NAME]`

For detailed instructions on creating modules, including backend implementation, Vue.js frontend, and Pest testing, see the [Module Development Guide](docs/module-development-guide.md).

This generates the whole module stub. Use contracts and dtos to communicate between domain boundaries as described in [Modularizing Inertia](https://pacific-nymphea-e41.notion.site/Modularizing-Inertia-Laracon-India-2025-1a6320a6974e8014b91ec08cc6b79c4e). An [example repository](https://github.com/avosalmon/artisan-airlines) describes it better. It supports also the module-based loading and providing of typescript code for inertia.

#### Module Dependency Graph

[](#module-dependency-graph)

You can generate a [visual representation](docs/module-dependency-graph.md) of module dependencies with:

`php artisan modules:graph`

This command analyzes the codebase and creates a dependency graph using Mermaid, which is supported by GitHub Markdown. The graph shows which modules depend on each other and provides detailed information about each module.

The generated graph is saved to `docs/module-dependency-graph.md` by default, but you can specify a custom output path:

`php artisan modules:graph --output=custom/path/graph.md`

#### Database Entity Relationship Diagram

[](#database-entity-relationship-diagram)

A [visual representation](docs/database-entity-relationship-diagram.md) of the database schema is available, showing all tables, columns, relationships, and indexes used in the project.

### Configure the used layouts with a console command

[](#configure-the-used-layouts-with-a-console-command)

(provided by the [foundation-layout](app-modules/foundation-layout/README.md) module)

`php artisan app:configure-layouts`

Then you can switch between all the provided layouts within the [starter kits](https://laravel.com/docs/starter-kits#vue-available-layouts).

### Reuse backend localization in frontend

[](#reuse-backend-localization-in-frontend)

We support localization. If your user implements the `HasLocalePreference` interface we would support that by the `SetLocale` middleware.

With `php artisan translations:generate` the php stored translations get transferred to the typescript translations used by `vue-i18n`.

### Creating model documentation

[](#creating-model-documentation)

`composer run ide-helper`

### Format your code

[](#format-your-code)

- during GitHub workflows a new commit will handle this
- or run locally: `composer run lint` and `npm run lint`

### Run the test suite

[](#run-the-test-suite)

`composer run test`

### Code Coverage

[](#code-coverage)

- The default test suite enforces coverage and type-coverage thresholds: `composer run test`.
- To generate an HTML coverage report locally, run:

```
vendor/bin/pest --coverage --coverage-html tests/coverage
```

Then open `tests/coverage/index.html` in your browser.

### Browser testing

[](#browser-testing)

Pest v4 browser tests are included (Playwright). CI installs the browsers automatically. Locally, you can install them with:

```
npx playwright install --with-deps
```

Run browser tests as part of the full suite via `composer run test`, or filter specific tests with Pest.

### Development tips

[](#development-tips)

- Regular dev: `composer run dev`
- With SSR: `composer run dev:ssr`

### Dependabot

[](#dependabot)

Weekly updates for npm and php dependencies.

###  Health Score

41

—

FairBetter than 89% of packages

Maintenance74

Regular maintenance activity

Popularity10

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 53.3% 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 ~5 days

Total

4

Last Release

342d ago

Major Versions

0.0.3 → 1.0.02025-06-04

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/4946056?v=4)[Robert Kummer](/maintainers/rokde)[@rokde](https://github.com/rokde)

---

Top Contributors

[![rokde](https://avatars.githubusercontent.com/u/4946056?v=4)](https://github.com/rokde "rokde (578 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (260 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (246 commits)")

---

Tags

frameworklaravel

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[laravel/vue-starter-kit

The skeleton application for the Laravel framework.

595238.0k](/packages/laravel-vue-starter-kit)[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)[oseughu/svelte-starter-kit

The skeleton application for the Laravel framework.

1781.4k](/packages/oseughu-svelte-starter-kit)

PHPackages © 2026

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