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

ActiveProject[Framework](/categories/framework)

nasirkhan/laravel-starter
=========================

A CMS like modular Laravel starter project.

v13.4.0(1mo ago)1.4k2.7k—0%460[1 PRs](https://github.com/nasirkhan/laravel-starter/pulls)GPL-3.0-or-laterPHPPHP ^8.4CI passing

Since Jun 21Pushed 1mo ago43 watchersCompare

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

READMEChangelog (10)Dependencies (45)Versions (90)Used By (0)Security (1)

[![Laravel Starter - A CMS like modular starter project built with the latest Laravel framework.](https://user-images.githubusercontent.com/396987/82162573-6940f500-98c7-11ea-974e-888b4f866c74.jpg)](https://user-images.githubusercontent.com/396987/82162573-6940f500-98c7-11ea-974e-888b4f866c74.jpg)

Laravel Starter (based on Laravel 13.x)
=======================================

[](#laravel-starter-based-on-laravel-13x)

**Laravel Starter** is a Laravel 13.x based simple starter project. Most of the commonly needed features of an application like `Authentication`, `Authorisation`, `Users` and `Role management`, `Application Backend`, `Backup`, `Log viewer` are available here. It is modular, so you may use this project as a base and build your own modules. A module can be used in any `Laravel Starter` based project. Here Frontend and Backend are completely separated with separate routes, controllers, and themes as well.

***Please let me know your feedback and comments.***

[![Latest Stable Version](https://camo.githubusercontent.com/93dec640ef95c298d425add657fc3a0ff425ed198e33924a8d6a4c304f8776f5/687474703a2f2f706f7365722e707567782e6f72672f6e617369726b68616e2f6c61726176656c2d737461727465722f76)](https://packagist.org/packages/nasirkhan/laravel-starter) [![StyleCI Build](https://camo.githubusercontent.com/e8d13f88df7cb7010f294fab8fadbe8d8fe251419ace0d4def781fe9342136cc/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3130353633383838322f736869656c643f7374796c653d666c6174)](https://packagist.org/packages/nasirkhan/laravel-starter) [![License](https://camo.githubusercontent.com/eb5f448c702681fa3df7a44a03ea2ca5019b407bf9a98d422deb5759f3709dbd/687474703a2f2f706f7365722e707567782e6f72672f6e617369726b68616e2f6c61726176656c2d737461727465722f6c6963656e7365)](https://packagist.org/packages/nasirkhan/laravel-starter) [![PHP Version Require](https://camo.githubusercontent.com/ed424748d73d5c52dbe0e9ef6138e39446997aba3445d170ad9187b3cfd75ad2/687474703a2f2f706f7365722e707567782e6f72672f6e617369726b68616e2f6c61726176656c2d737461727465722f726571756972652f706870)](https://packagist.org/packages/nasirkhan/laravel-starter)

Application Demo
================

[](#application-demo)

Check the following demo project. It is just a straight installation of the project without any modification.

Demo URL:

You may use the following account credentials to access the application backend.

```
User: super@admin.com
Pass: secret

User: user@user.com
Pass: secret

```

Custom Commands
===============

[](#custom-commands)

We have created a number of custom commands for the project. The commands are listed below with a brief about their use of it.

Install / Setup
---------------

[](#install--setup)

See the canonical [Installation](#installation) section below for the full setup flow and all supported options for `php artisan starter:install`.

Update
------

[](#update)

After pulling changes from the repository, run:

```
php artisan starter:update
```

This runs `composer update`, checks for new module migrations, runs outstanding migrations, and clears all caches.

Create New module
-----------------

[](#create-new-module)

To create a project use the following command, you have to replace the MODULE\_NAME with the name of the module.

```
php artisan module:build MODULE_NAME
```

You may want to use `--force` option to overwrite the existing module. if you use this option, it will replace all the existing files with the default stub files.

```
php artisan module:build MODULE_NAME --force
```

Clear All Cache
---------------

[](#clear-all-cache)

```
php artisan clear-all
```

or

```
composer clear-all
```

This clears application caches including config, route, view, and permission cache. If you prefer Composer scripts, `composer clear-all` is also available.

Code Style Fix
--------------

[](#code-style-fix)

We are now using `Laravel Pint` to make the code style stay as clean and consistent as the Laravel Framework. Use the following command to apply CS-Fix.

```
composer pint
```

Along with Laravel Pint, we are using `prettier` to format the blade templates. You can install the `prettier` extension in your favorite editor. The following command will format the blade templates.

```
npm run format
```

`npm` is the supported package manager for this project. Avoid mixing `npm` and `yarn` lockfiles on the same checkout, especially on Windows, because native packages such as `esbuild` and Tailwind's platform binaries can fail to resolve or unlink cleanly after a mixed install.

If you are intentionally using `yarn`, remove the existing install state first so Yarn can rebuild it from scratch.

```
Remove-Item -Recurse -Force node_modules
Remove-Item -Force yarn.lock
yarn cache clean
yarn install
yarn format
```

Role - Permissions
------------------

[](#role---permissions)

Several custom commands are available to add and update `role-permissions`. Please read the [Role - Permission Wiki page](https://github.com/nasirkhan/laravel-starter/wiki/Role-Permission), where you will find the list of commands with examples.

Features
========

[](#features)

The `Laravel Starter` comes with several features which are the most common in almost all applications. It is a template project which means it is intended to be built in a way that it can be used for other projects.

It is a modular application, and some modules are installed by default. It will be helpful to use it as a base for future applications.

- Admin feature and public views are completely separated as `Backend` and `Frontend` namespace.
- Major features are developed as `Modules`. A module like Posts, Comments, and Tags are separated from the core features like User, Role, Permission

Core Features
-------------

[](#core-features)

- User Authentication
- Social Login
    - Google
    - Facebook
    - Github
    - Build in a way adding more is much easier now
- User Profile with Avatar
- Role-Permissions for Users
- Dynamic Menu System
- Language Switcher
- Localization enabled across the project
- Backend Theme
    - Bootstrap 5, CoreUI
    - Fontawesome 6
    - Dark Mode
- Frontend Theme
    - Tailwind
    - Fontawesome 6
    - Dark Mode
- Article Module
    - Posts
    - Categories
    - Tags
    - Comments
    - wysiwyg editor
    - File browser
- Application Settings
- External Libraries
    - Bootstrap 5
    - Fontawesome 6
    - CoreUI
    - Tailwind
    - Datatables
    - Select2
    - Date Time Picker
- Backup (Source, Files, Database as Zip)
- Log Viewer
- Notification
    - Dashboard and details view

User Guide
==========

[](#user-guide)

Installation
------------

[](#installation)

This is the single source of truth for installing Laravel Starter from a fresh checkout. You may find more background in the [Installation Wiki](https://github.com/nasirkhan/laravel-starter/wiki/Installation).

### From GitHub Template (recommended)

[](#from-github-template-recommended)

If you created a new repository from this GitHub template, or cloned it directly:

```
# 1. Install PHP dependencies
composer install

# 2. Run the interactive setup wizard — handles .env, database, migrations, seeding, and npm assets
php artisan starter:install
```

Or as a single shortcut after `composer install`:

```
composer setup
```

For a true one-liner from a fresh clone, convenience scripts are included:

```
# Linux / macOS
bash setup.sh

# Windows (PowerShell)
.\setup.ps1
```

Both scripts run `composer install` and then launch `php artisan starter:install`. Pass any `starter:install` flags through, e.g. `bash setup.sh --demo`.

The setup wizard will guide you through environment configuration, database selection, migrations, seeding, and building frontend assets. When finished it prints the app URL and default login credentials.

**Available options:**

OptionDescription`--skip-db`Skip database setup`--skip-seed`Skip database seeding`--skip-npm`Skip `npm install` and asset build`--demo`Seed with demo data (no prompt)If you only need to rerun cache clearing after setup, use:

```
php artisan clear-all
```

### Via Composer create-project

[](#via-composer-create-project)

```
composer create-project nasirkhan/laravel-starter
```

This runs migrations automatically. Afterwards run the setup wizard to seed and build assets:

```
php artisan starter:install --skip-db
```

*After creating the new permissions use the following commands to update cached permissions.*

`php artisan cache:forget spatie.permission.cache`

Database Seeding
----------------

[](#database-seeding)

Two seeder categories are available:

- **Essential** (always run): users, roles, permissions, menu — `AuthTableSeeder`, `MenuDatabaseSeeder`
- **Dummy data** (optional): posts, categories, tags — disabled via `SEED_DUMMY_DATA=false` in `.env`

```
# Full seed (essential + dummy data)
php artisan migrate:fresh --seed

# Essential data only
php artisan db:seed-essential --fresh

# Add or refresh demo content at any time
php artisan laravel-starter:insert-demo-data
php artisan laravel-starter:insert-demo-data --fresh
```

For production, set `SEED_DUMMY_DATA=false` and use `--force`:

```
php artisan db:seed-essential --fresh --force
```

Docker and Laravel Sail
-----------------------

[](#docker-and-laravel-sail)

This project is configured with Laravel Sail (). You can use all the docker functionalities here. To install using docker and sail:

1. Clone or download the repository
2. Go to the project directory and run `composer install`
3. Create `.env` file by copying the `.env-sail`. You may use the command to do that `cp .env-sail .env`
4. Update the database name and credentials in `.env` file
5. Run the command `sail up` (consider adding this to your alias: `alias sail='[ -f sail ] && sh sail || sh vendor/bin/sail'`)
6. Run the command `sail artisan migrate --seed`
7. Link storage directory: `sail artisan storage:link`
8. Since Sail is already up, you can just visit

Reporting a Vulnerability
=========================

[](#reporting-a-vulnerability)

If you discover any security-related issues, please send an e-mail to Nasir Khan Saikat via  instead of using the issue tracker.

Screenshots
===========

[](#screenshots)

**Home Page**

[![Laravel Starter Homepage Dark Mode](https://private-user-images.githubusercontent.com/396987/321028887-1cf5ce5a-f374-4bae-b5a3-69e8d7ff684d.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDI4ODg3LTFjZjVjZTVhLWYzNzQtNGJhZS1iNWEzLTY5ZThkN2ZmNjg0ZC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1mMmMyMTVhMzI0MmIyZjM0ODk2Y2M5YjYzZDNjMWZkZTM1Y2NlZTIyMmQ4YjM5NmQyYzQzMTI1NDM4ZTcwNmUyJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.anfTUxAmA-TYB6JI4MMUWVF_VEX9bfqWE2L29WxrlOY)](https://private-user-images.githubusercontent.com/396987/321028887-1cf5ce5a-f374-4bae-b5a3-69e8d7ff684d.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDI4ODg3LTFjZjVjZTVhLWYzNzQtNGJhZS1iNWEzLTY5ZThkN2ZmNjg0ZC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1mMmMyMTVhMzI0MmIyZjM0ODk2Y2M5YjYzZDNjMWZkZTM1Y2NlZTIyMmQ4YjM5NmQyYzQzMTI1NDM4ZTcwNmUyJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.anfTUxAmA-TYB6JI4MMUWVF_VEX9bfqWE2L29WxrlOY)[![Laravel Starter Homepage](https://private-user-images.githubusercontent.com/396987/321029187-93341711-60dd-4624-8cd7-82f1c611287d.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDI5MTg3LTkzMzQxNzExLTYwZGQtNDYyNC04Y2Q3LTgyZjFjNjExMjg3ZC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1lZjcwMjRlNzhiYWE0MWUyOWE4OGFiMTRjNTExMWE3ODg5MzBlMmQ0ZTQ3MzYwMjRlMDA2N2JhMjY3ZmVjMjNhJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.U84NRFq0fKJ8lxT7gF5Gj6OsJ30uteSY4k6lGrdGZbU)](https://private-user-images.githubusercontent.com/396987/321029187-93341711-60dd-4624-8cd7-82f1c611287d.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDI5MTg3LTkzMzQxNzExLTYwZGQtNDYyNC04Y2Q3LTgyZjFjNjExMjg3ZC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1lZjcwMjRlNzhiYWE0MWUyOWE4OGFiMTRjNTExMWE3ODg5MzBlMmQ0ZTQ3MzYwMjRlMDA2N2JhMjY3ZmVjMjNhJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.U84NRFq0fKJ8lxT7gF5Gj6OsJ30uteSY4k6lGrdGZbU)

**Login Page**

[![Laravel Starter Login](https://user-images.githubusercontent.com/396987/164892620-3b4c8b1b-81c8-4630-a39f-38dadff89a7d.png)](https://user-images.githubusercontent.com/396987/164892620-3b4c8b1b-81c8-4630-a39f-38dadff89a7d.png)

**Posts Page**

[![Laravel Starter Posts Page](https://private-user-images.githubusercontent.com/396987/321029575-288f56cb-0cb0-4652-be17-9f65288558bb.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDI5NTc1LTI4OGY1NmNiLTBjYjAtNDY1Mi1iZTE3LTlmNjUyODg1NThiYi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0xOWI2MGQ2NmYxMGVlM2YwMTZhMmY1YzBkZDBlYmJkM2VlMzFlM2NhMTJiZmZhYTc2YWNlMzM1ZmM1ZjBjZTUzJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.4zJVHhgSOt8MRJKPlSZf7pIY4xjEW5sTQpALmIMQ59Y)](https://private-user-images.githubusercontent.com/396987/321029575-288f56cb-0cb0-4652-be17-9f65288558bb.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDI5NTc1LTI4OGY1NmNiLTBjYjAtNDY1Mi1iZTE3LTlmNjUyODg1NThiYi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0xOWI2MGQ2NmYxMGVlM2YwMTZhMmY1YzBkZDBlYmJkM2VlMzFlM2NhMTJiZmZhYTc2YWNlMzM1ZmM1ZjBjZTUzJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.4zJVHhgSOt8MRJKPlSZf7pIY4xjEW5sTQpALmIMQ59Y)

**Backend Dashboard**

[![Laravel Starter Admin Dashboard Dark Mode](https://private-user-images.githubusercontent.com/396987/321029793-0f6b8201-6f6a-429f-894b-4e491cc5eba4.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDI5NzkzLTBmNmI4MjAxLTZmNmEtNDI5Zi04OTRiLTRlNDkxY2M1ZWJhNC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT05NzE3YTdiMjczMDYzYzhhODcxZDQzNmM2OTI3NWFkOWFiNjRkMDA2YWNmNDA3YWEwYWEwMjg2MGYzNDU2OThlJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.GGKxVFJae6wQ_VGsTCYGD1K9Mamj9fk8UNBestVA6Jw)](https://private-user-images.githubusercontent.com/396987/321029793-0f6b8201-6f6a-429f-894b-4e491cc5eba4.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDI5NzkzLTBmNmI4MjAxLTZmNmEtNDI5Zi04OTRiLTRlNDkxY2M1ZWJhNC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT05NzE3YTdiMjczMDYzYzhhODcxZDQzNmM2OTI3NWFkOWFiNjRkMDA2YWNmNDA3YWEwYWEwMjg2MGYzNDU2OThlJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.GGKxVFJae6wQ_VGsTCYGD1K9Mamj9fk8UNBestVA6Jw)[![Laravel Starter Admin Dashboard](https://private-user-images.githubusercontent.com/396987/321030836-f8131011-2ecc-4a11-961f-85e02cb8f7a1.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDMwODM2LWY4MTMxMDExLTJlY2MtNGExMS05NjFmLTg1ZTAyY2I4ZjdhMS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0yNmVlMzBjNzRhODZjN2VjNzZiZWFmOTU1Y2VmMzUxM2VkZDU0ZDk0ZjI2ZGVlODAxZDAxYTU4NzUyNjkzZmY5JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.pFfSlDfvpeDrFG0X0jffBUrS20krOeHBYNuMZt5QnSA)](https://private-user-images.githubusercontent.com/396987/321030836-f8131011-2ecc-4a11-961f-85e02cb8f7a1.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDMwODM2LWY4MTMxMDExLTJlY2MtNGExMS05NjFmLTg1ZTAyY2I4ZjdhMS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0yNmVlMzBjNzRhODZjN2VjNzZiZWFmOTU1Y2VmMzUxM2VkZDU0ZDk0ZjI2ZGVlODAxZDAxYTU4NzUyNjkzZmY5JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.pFfSlDfvpeDrFG0X0jffBUrS20krOeHBYNuMZt5QnSA)

---

[![Laravel Starter Posts List](https://private-user-images.githubusercontent.com/396987/321029880-c032769e-78b2-4dbf-bc5e-687645125796.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDI5ODgwLWMwMzI3NjllLTc4YjItNGRiZi1iYzVlLTY4NzY0NTEyNTc5Ni5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0yYjRkYWJhM2QyMTc0ZDBiZjEzOGU0OTliMDZmYWJhZWYyM2NmNWE0MDkwYWQ4YTlmYzkzZTM4MWJlMDZjNDdjJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.k1Ve9aUU35Bd6eN9z-DcM1FmKVYJKFvVkhhluNY3mlE)](https://private-user-images.githubusercontent.com/396987/321029880-c032769e-78b2-4dbf-bc5e-687645125796.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDI5ODgwLWMwMzI3NjllLTc4YjItNGRiZi1iYzVlLTY4NzY0NTEyNTc5Ni5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0yYjRkYWJhM2QyMTc0ZDBiZjEzOGU0OTliMDZmYWJhZWYyM2NmNWE0MDkwYWQ4YTlmYzkzZTM4MWJlMDZjNDdjJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.k1Ve9aUU35Bd6eN9z-DcM1FmKVYJKFvVkhhluNY3mlE)

---

[![Edit-Posts-Laravel-Starter](https://private-user-images.githubusercontent.com/396987/321030095-6421b8e5-3c69-4c1f-9518-875e72be77c0.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDMwMDk1LTY0MjFiOGU1LTNjNjktNGMxZi05NTE4LTg3NWU3MmJlNzdjMC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1lODlmYTMzMjAzMDY0MDE1YzU2ZmI3M2EwMjEyNzhiNmUyZTllOTI1NjExNjRiMjZjOGVmYTBmNTU3YTg2MzA3JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.K1U13tIxSoAGxAIgB12cW4IjBbENvZa9mPfERiHdvN8)](https://private-user-images.githubusercontent.com/396987/321030095-6421b8e5-3c69-4c1f-9518-875e72be77c0.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzQ0MjQ4NzYsIm5iZiI6MTc3NDQyNDU3NiwicGF0aCI6Ii8zOTY5ODcvMzIxMDMwMDk1LTY0MjFiOGU1LTNjNjktNGMxZi05NTE4LTg3NWU3MmJlNzdjMC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMzI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDMyNVQwNzQyNTZaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT1lODlmYTMzMjAzMDY0MDE1YzU2ZmI3M2EwMjEyNzhiNmUyZTllOTI1NjExNjRiMjZjOGVmYTBmNTU3YTg2MzA3JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.K1U13tIxSoAGxAIgB12cW4IjBbENvZa9mPfERiHdvN8)

###  Health Score

70

—

ExcellentBetter than 100% of packages

Maintenance91

Actively maintained with recent releases

Popularity47

Moderate usage in the ecosystem

Community32

Small or concentrated contributor base

Maturity96

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 91.4% 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 ~35 days

Recently: every ~7 days

Total

82

Last Release

45d ago

Major Versions

v8.4.2 → v9.0.02022-04-23

v9.16.0 → v10.0.02023-03-12

v10.18.0 → v11.0.02024-04-12

v11.12.0 → v12.0.02025-04-03

v12.x-dev → v13.0.02026-02-26

PHP version history (10 changes)v1.0.0PHP &gt;=7.1.3

v2.0.0PHP ^7.1.3

v5.1.0PHP ^7.2

v6.0.0PHP ^7.2.5

v8.0.0PHP ^7.3.0

v8.4.2PHP ^7.3|^8.0

v9.0.0PHP ^8.0.2

v10.0.0PHP ^8.1

v11.0.0PHP ^8.2

v13.0.0PHP ^8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/27802773a2668018fdca8b76c35d03ce16cfc92c0f9c6703fb532e77780eadc0?d=identicon)[nasirkhan](/maintainers/nasirkhan)

---

Top Contributors

[![nasirkhan](https://avatars.githubusercontent.com/u/396987?v=4)](https://github.com/nasirkhan "nasirkhan (2520 commits)")[![StyleCIBot](https://avatars.githubusercontent.com/u/11048387?v=4)](https://github.com/StyleCIBot "StyleCIBot (158 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (51 commits)")[![wikiccu](https://avatars.githubusercontent.com/u/11913682?v=4)](https://github.com/wikiccu "wikiccu (5 commits)")[![0xant](https://avatars.githubusercontent.com/u/52506589?v=4)](https://github.com/0xant "0xant (4 commits)")[![Lobz](https://avatars.githubusercontent.com/u/1750256?v=4)](https://github.com/Lobz "Lobz (4 commits)")[![HDVinnie](https://avatars.githubusercontent.com/u/12850699?v=4)](https://github.com/HDVinnie "HDVinnie (3 commits)")[![ingen2](https://avatars.githubusercontent.com/u/8234033?v=4)](https://github.com/ingen2 "ingen2 (3 commits)")[![fabyo0](https://avatars.githubusercontent.com/u/101067129?v=4)](https://github.com/fabyo0 "fabyo0 (2 commits)")[![Copilot](https://avatars.githubusercontent.com/in/1143301?v=4)](https://github.com/Copilot "Copilot (2 commits)")[![Danjosh0211](https://avatars.githubusercontent.com/u/27857275?v=4)](https://github.com/Danjosh0211 "Danjosh0211 (2 commits)")[![shreshtadev](https://avatars.githubusercontent.com/u/7456363?v=4)](https://github.com/shreshtadev "shreshtadev (1 commits)")[![SneherAdor](https://avatars.githubusercontent.com/u/24508783?v=4)](https://github.com/SneherAdor "SneherAdor (1 commits)")[![Kleindberg](https://avatars.githubusercontent.com/u/6459395?v=4)](https://github.com/Kleindberg "Kleindberg (1 commits)")[![dungpxhtp](https://avatars.githubusercontent.com/u/96401256?v=4)](https://github.com/dungpxhtp "dungpxhtp (1 commits)")

---

Tags

admin-dashboardcoreui-laraveldashboardhacktoberfestlaravellaravel-admin-panellaravel-boilerplatelaravel-starterphp-starterstarter-kitstarter-projectstarter-templateframeworklaravelwebsitecmsadminadmin dashboardstarterlaravel blog

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[orchid/platform

Platform for back-office applications, admin panel or CMS your Laravel app.

4.8k2.5M59](/packages/orchid-platform)[unopim/unopim

UnoPim Laravel PIM

9.4k1.8k](/packages/unopim-unopim)[microweber/microweber

New generation CMS with drag and drop

3.4k13.8k1](/packages/microweber-microweber)[bpocallaghan/laravel-admin-starter

The Laravel Framework.

3511.4k](/packages/bpocallaghan-laravel-admin-starter)

PHPackages © 2026

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