PHPackages                             cleaniquecoders/laravel-boilerplate - 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. cleaniquecoders/laravel-boilerplate

AbandonedArchivedProject[Framework](/categories/framework)

cleaniquecoders/laravel-boilerplate
===================================

Web Application Boilerplate Based on Laravel Framework.

v3.5.3(7y ago)13642MITPHPPHP &gt;=7.1.3

Since Dec 16Pushed 7y agoCompare

[ Source](https://github.com/cleaniquecoders/laravel-boilerplate)[ Packagist](https://packagist.org/packages/cleaniquecoders/laravel-boilerplate)[ RSS](/packages/cleaniquecoders-laravel-boilerplate/feed)WikiDiscussions master Synced yesterday

READMEChangelog (10)Dependencies (32)Versions (24)Used By (0)

[![Build Status](https://camo.githubusercontent.com/515fd0817061cdf6d1751b23084c66c1323a436207fed62567a767030c2a8ea8/68747470733a2f2f7472617669732d63692e6f72672f636c65616e69717565636f646572732f6c61726176656c2d626f696c6572706c6174652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/cleaniquecoders/laravel-boilerplate) [![Latest Stable Version](https://camo.githubusercontent.com/3bef9cabbf8a2b7fc5ba07625925a0f2ba4d51deb67c3c3f3177a2f481f401c3/68747470733a2f2f706f7365722e707567782e6f72672f636c65616e69717565636f646572732f6c61726176656c2d626f696c6572706c6174652f762f737461626c65)](https://packagist.org/packages/cleaniquecoders/laravel-boilerplate) [![Total Downloads](https://camo.githubusercontent.com/b30a2890df5da3f473a5d3b7553721a65e831b13e4c5a4522770a584e3366e3d/68747470733a2f2f706f7365722e707567782e6f72672f636c65616e69717565636f646572732f6c61726176656c2d626f696c6572706c6174652f646f776e6c6f616473)](https://packagist.org/packages/cleaniquecoders/laravel-boilerplate) [![License](https://camo.githubusercontent.com/09ecef5c521bb783037d0cd0144e5b4e1ba294dcaebf8f905125c79af7f39da6/68747470733a2f2f706f7365722e707567782e6f72672f636c65616e69717565636f646572732f6c61726176656c2d626f696c6572706c6174652f6c6963656e7365)](https://packagist.org/packages/cleaniquecoders/laravel-boilerplate)

Laravel Boilerplate
===================

[](#laravel-boilerplate)

A boilerplate based on Laravel Framework to speed up web application development setup.

Packages
--------

[](#packages)

- [Cleanique Coders - Artisan Makers](https://github.com/cleaniquecoders/artisan-makers)
- [Cleanique Coders - Blueprint Macro](https://github.com/cleaniquecoders/blueprint-macro)
- [Cleanique Coders - Laravel Helper](https://github.com/cleaniquecoders/laravel-helper)
- [Cleanique Coders - Laravel Observers](https://github.com/cleaniquecoders/laravel-helpers)
- [Cleanique Coders - Money Wrapper](https://github.com/cleaniquecoders/money-wrapper)
- [Cleanique Coders - Profile](https://github.com/cleaniquecoders/profile)
- [Spatie - Image Optimizer](https://github.com/spatie/image-optimizer)
- [Spatie - Laravel Activitylog](https://github.com/spatie/)
- [Spatie - Laravel Html](https://github.com/spatie/laravel-html)
- [Spatie - Laravel Medialibrary](https://github.com/spatie/laravel-medialibrary)
- [Spatie - Laravel Permission](https://github.com/spatie/laravel-permission)
- [Spatie - Laravel Responsecache](https://github.com/spatie/laravel-responsecache)
- [Spatie - Laravel Sluggable](https://github.com/spatie/laravel-sluggable)
- [Softon - Sweet Alert](https://github.com/softon/sweetalert)
- [Tighten.Co - Ziggy](https://github.com/tightenco/ziggy)

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

[](#installation)

```
$ composer create-project cleaniquecoders/laravel-boilerplate

```

Configure your `.env`, then:

```
$ php artisan reload:all -d

```

Usage
-----

[](#usage)

### User Accounts

[](#user-accounts)

By default, there's no users created. But you can run `php artisan db:seed DevelopmentSeeder` to run create 3 main users - Developer, Administrator and User.

Login details for default users:

1. E-mail : **** Password: `developer`
2. E-mail : **** Password: `administrator`
3. E-mail : **** Password: `user`

By default, all newly registered user will be assign role as `user`.

### Access Control

[](#access-control)

Access control for the application can be configure from `config/acl.php`. It consist of `roles`, `permissions` and `actions`. Default seeder for ACL is in `database/seeds/RolesAndPermissionsSeeder.php`. You may overwrite this as you please.

Seeded roles and permissions based on `database/seeds/RolesAndPermissionsSeeder.php` will have all guards specify in `config/auth.php`.

### Commands

[](#commands)

There's some commands area ready built-in. Others, may refer to respective packages.

- `reload:db` - Run `migrate:fresh --seed` with `profile:seed`. You may extend the usage.
- `reload:cache` - Recache everything
- `reload:all` - Run above two commands. Passing `-d` will seed `DevelopementSeeder` - useful for development setup.

### Routes

[](#routes)

Routes has been organised so that you can manage it properly, keep it clean and well organised.

1. API Routes - `routes/api`
2. Breadcrumbs Routes - `routes/breadcrumbs`
3. Datatable Routes - `routes/datatable`
4. Web Routes - `routes/web`

You may add unlimited files in respective directories above, based on it's concern.

Contributions
-------------

[](#contributions)

Contributions are **welcome** and will be fully **credited**.

We accept contributions via Pull Requests on [Github](https://github.com/spatie/laravel-permission).

Pull Requests
-------------

[](#pull-requests)

- **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](http://pear.php.net/package/PHP_CodeSniffer).
- **Add tests!** - Your patch won't be accepted if it doesn't have tests.
- **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.
- **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option.
- **Create feature branches** - Don't ask us to pull from your master branch.
- **One pull request per feature** - If you want to do more than one thing, send multiple pull requests.
- **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](http://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting.

Running Test
------------

[](#running-test)

```
$ vendor/bin/phpunit

```

License
-------

[](#license)

This package is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity68

Established project with proven stability

 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 ~13 days

Total

22

Last Release

2788d ago

Major Versions

v0.0.2 → v1.0.02017-12-16

v1.0.2 → v2.0.02018-02-04

v2.0.3 → v3.0.02018-02-08

PHP version history (2 changes)v0.0.1PHP &gt;=7.0.0

v3.4.0PHP &gt;=7.1.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/b57069d0f4b634f65eccc6e5d5848990e25968d45ec2cf46d626c6a4658f944b?d=identicon)[nasrulhazim.m](/maintainers/nasrulhazim.m)

---

Top Contributors

[![nasrulhazim](https://avatars.githubusercontent.com/u/10341422?v=4)](https://github.com/nasrulhazim "nasrulhazim (456 commits)")

---

Tags

boilerplatehashidslaravel-boilerplateframeworklaravelosinitiativeweb-app-boilerplate

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/cleaniquecoders-laravel-boilerplate/health.svg)

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

###  Alternatives

[bagisto/bagisto

Bagisto Laravel E-Commerce

26.2k161.6k7](/packages/bagisto-bagisto)[unopim/unopim

UnoPim Laravel PIM

9.4k1.8k](/packages/unopim-unopim)[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

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

PHPackages © 2026

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