PHPackages                             remonhasan/hesh - 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. remonhasan/hesh

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

remonhasan/hesh
===============

This will provide admin authentication and query will save in database.

v1.0.0(2y ago)04MITBlade

Since Jun 27Pushed 2y ago1 watchersCompare

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

READMEChangelogDependenciesVersions (2)Used By (0)

Hesh
----

[](#hesh)

`Hesh` provides a minimal and simple starting point for building a Laravel application with authentication and a customizable admin dashboard. Styled with Bootstrap, `Hesh` publishes authentication controllers and views to your application that can be easily customized with your own design, template engine and functionalities based on your own application's needs.

 [ ![Total Downloads](https://camo.githubusercontent.com/80002958d7fb672bf1118fc621940ef515250866016a3bb17a22e4bf72ade224/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f72656d6f6e686173616e2f68657368) ](https://packagist.org/packages/remonhasan/hesh) [ ![Latest Stable Version](https://camo.githubusercontent.com/3a953239bb337499b8533e969972c852104116be8a22c41ddcf94eba3215d8fd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f72656d6f6e686173616e2f68657368) ](https://packagist.org/packages/remonhasan/hesh) [ ![License](https://camo.githubusercontent.com/fbbf98e27b8424ca2d88cdb1c479f50516ec8ac34d02044b02528bda6d221b57/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f72656d6f6e686173616e2f68657368) ](https://packagist.org/packages/remonhasan/hesh)

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

[](#requirements)

- PHP &gt;=8.0.2

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

[](#installation)

To install the most recent version, run the following command.

```
  composer require remonhasan/hesh
```

Go to composer.json

```
   "minimum-stability": "dev",
```

Download the zip from the link, extract and paste in your public directory: [Download link](https://drive.google.com/drive/folders/1R-Ffs_kaphGA3-HCv-b213Zg8qFZeIAQ?usp=sharing)

Go to app.php in config directory

```
  'providers' => [
      Remonhasan\Hesh\HeshServiceProvider::class,
  ],
```

Go to auth.php in config directory

```
  use Remonhasan\Hesh\Models\Admin;

  'guards' => [
        'web' => [
            'driver' => 'session',
            'provider' => 'users',
        ],
        'admin' => [
            'driver' => 'session',
            'provider' => 'admins',
        ],
    ],

     'providers' => [
        'users' => [
            'driver' => 'eloquent',
            'model' => App\Models\User::class,
        ],

        'admins' => [
            'driver' => 'eloquent',
            'model' => Admin::class,
        ],
    ],
```

Go to Kernel.php

```
  use Remonhasan\Hesh\Middleware\Admin;

   protected $routeMiddleware = [
        'admin' => Admin::class,
    ];
```

Run the migrations

```
  php artisan migrate
```

Start the server by running `php artisan serve` and acces route for registration, login and redirect to dashboard.

```
  http://localhost:8000/admin-register
  http://localhost:8000/admin-login
```

License
-------

[](#license)

Hesh is licensed under the [MIT License](http://opensource.org/licenses/MIT).

Copyright 2023 [Remon Hasan](https://www.linkedin.com/in/remonhasan/)

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity44

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

Unknown

Total

1

Last Release

1050d ago

### Community

Maintainers

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

---

Top Contributors

[![Remonhasan](https://avatars.githubusercontent.com/u/33865594?v=4)](https://github.com/Remonhasan "Remonhasan (7 commits)")

---

Tags

authdashboardlaravellaravel-package

### Embed Badge

![Health badge](/badges/remonhasan-hesh/health.svg)

```
[![Health](https://phpackages.com/badges/remonhasan-hesh/health.svg)](https://phpackages.com/packages/remonhasan-hesh)
```

###  Alternatives

[namshi/jose

JSON Object Signing and Encryption library for PHP.

1.8k99.6M101](/packages/namshi-jose)[league/oauth1-client

OAuth 1.0 Client Library

99698.8M106](/packages/league-oauth1-client)[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[gesdinet/jwt-refresh-token-bundle

Implements a refresh token system over Json Web Tokens in Symfony

70516.4M35](/packages/gesdinet-jwt-refresh-token-bundle)[league/oauth2-google

Google OAuth 2.0 Client Provider for The PHP League OAuth2-Client

41721.2M118](/packages/league-oauth2-google)[illuminate/auth

The Illuminate Auth package.

9327.3M1.0k](/packages/illuminate-auth)

PHPackages © 2026

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