PHPackages                             bangjhon/laravel-pro-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. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. bangjhon/laravel-pro-starter

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

bangjhon/laravel-pro-starter
============================

A premium Laravel starter package with custom authentication, role-based dashboards, and modern Tailwind-powered UI.

v1.1.0(1mo ago)06MITBladePHP ^8.1

Since Apr 23Pushed 1mo agoCompare

[ Source](https://github.com/Akbar330/Bangjhon-LaravelPro-Starter)[ Packagist](https://packagist.org/packages/bangjhon/laravel-pro-starter)[ RSS](/packages/bangjhon-laravel-pro-starter/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependencies (6)Versions (3)Used By (0)

bangjhon/laravel-pro-starter
============================

[](#bangjhonlaravel-pro-starter)

`bangjhon/laravel-pro-starter` is a production-ready Laravel package that adds a custom authentication system, role-aware dashboards, and a premium modern UI to any Laravel 10+ application.

Features
--------

[](#features)

- Custom authentication flow built with Laravel controllers and middleware
- Registration, login, logout, remember me, and role-based redirects
- `admin` and `user` roles out of the box
- Premium dashboard UI with sidebar, topbar, stat cards, tables, and responsive auth screens
- Publishable config, views, and assets
- Install command that publishes package resources, runs migrations, and seeds a default admin user
- Extendable activity log table for dashboard metrics

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

[](#requirements)

- PHP 8.1+
- Laravel 10, 11, 12, or 13

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

[](#installation)

Install the package via Composer:

```
composer require bangjhon/laravel-pro-starter
```

Run the installer:

```
php artisan bangjhon:install
```

The installer will:

- publish configuration
- publish Blade views
- publish assets
- run package migrations
- seed a default admin account
- print the generated credentials and next steps

Default Routes
--------------

[](#default-routes)

The package registers the following routes by default:

- `/login`
- `/register`
- `/logout`
- `/dashboard`
- `/admin/dashboard`
- `/admin/users`

All route names are prefixed with `bangjhon.`.

Default Admin Credentials
-------------------------

[](#default-admin-credentials)

These values come from `config/bangjhon-pro-starter.php` and can be changed before running the installer.

- Email: `admin@bangjhon.test`
- Password: `password123`

Usage
-----

[](#usage)

After installation:

1. Visit `/register` to create a standard user account.
2. Visit `/login` to sign in.
3. Users are redirected to `/dashboard`.
4. Admins are redirected to `/admin/dashboard`.

Use the included role middleware on your own routes:

```
Route::middleware(['web', 'auth', 'bangjhon.role:admin'])->group(function () {
    Route::get('/reports', fn () => 'Only admins can see this');
});
```

Configuration
-------------

[](#configuration)

Publish the package configuration manually if needed:

```
php artisan vendor:publish --tag=bangjhon-pro-starter-config
```

Useful options:

- route prefix
- route middleware stack
- registration toggle
- branding labels
- seeded admin credentials

Published Resources
-------------------

[](#published-resources)

```
php artisan vendor:publish --tag=bangjhon-pro-starter-config
php artisan vendor:publish --tag=bangjhon-pro-starter-views
php artisan vendor:publish --tag=bangjhon-pro-starter-assets
```

Screenshots
-----------

[](#screenshots)

- Auth screen placeholder: `docs/screenshots/login.png`
- Admin dashboard placeholder: `docs/screenshots/admin-dashboard.png`
- User dashboard placeholder: `docs/screenshots/user-dashboard.png`

Example Commands
----------------

[](#example-commands)

```
php artisan bangjhon:install
php artisan migrate
php artisan vendor:publish --tag=bangjhon-pro-starter-views
php artisan route:list --name=bangjhon
```

Extending The Package
---------------------

[](#extending-the-package)

- Update the published views to match your brand.
- Extend the `bangjhon_activity_logs` table with your own event metadata.
- Reuse the package middleware and layout structure for additional admin pages.

Testing
-------

[](#testing)

```
composer test
```

Preview
-------

[](#preview)

[![Dashboard](https://camo.githubusercontent.com/90180392c7e896a3e1e837d9d3e943e33c124a09e54a7e2d9a2f70fa851c0f37/68747470733a2f2f692e696d6775722e636f6d2f367a32774556492e706e67)](https://camo.githubusercontent.com/90180392c7e896a3e1e837d9d3e943e33c124a09e54a7e2d9a2f70fa851c0f37/68747470733a2f2f692e696d6775722e636f6d2f367a32774556492e706e67)[![Login](https://camo.githubusercontent.com/bc05620fb15df9025c4f4b4a26219336dbc16c43aa92b761a5d49bb3d699c911/68747470733a2f2f692e696d6775722e636f6d2f724430783470592e706e67)](https://camo.githubusercontent.com/bc05620fb15df9025c4f4b4a26219336dbc16c43aa92b761a5d49bb3d699c911/68747470733a2f2f692e696d6775722e636f6d2f724430783470592e706e67)

License
-------

[](#license)

MIT

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance90

Actively maintained with recent releases

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity43

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

Total

2

Last Release

47d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/bbea3583b0d7e7fad335e4d12e120bb44344fca77bea38d0589d93ccb3f67e73?d=identicon)[Akbar330](/maintainers/Akbar330)

---

Top Contributors

[![Akbar330](https://avatars.githubusercontent.com/u/137852772?v=4)](https://github.com/Akbar330 "Akbar330 (6 commits)")

---

Tags

laravelpackageAuthenticationtailwinddashboardstarter

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[lab404/laravel-impersonate

Laravel Impersonate is a plugin that allows to you to authenticate as your users.

2.3k17.8M58](/packages/lab404-laravel-impersonate)[lab404/laravel-auth-checker

Laravel Auth Checker allows you to log users authentication, devices authenticated from and lock intrusions.

225166.7k2](/packages/lab404-laravel-auth-checker)[lakm/nopass

Provides passwordless authentication for your laravel projects.

2215.1k3](/packages/lakm-nopass)[maicol07/laravel-oidc-client

OpenID Connect Client for Laravel

271.3k](/packages/maicol07-laravel-oidc-client)

PHPackages © 2026

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