PHPackages                             ibobdb/laravel-stisla - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. ibobdb/laravel-stisla

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

ibobdb/laravel-stisla
=====================

v1.0.0(4y ago)1371MITCSS

Since Jan 4Pushed 4y ago1 watchersCompare

[ Source](https://github.com/ibobdb/laravel-stisla)[ Packagist](https://packagist.org/packages/ibobdb/laravel-stisla)[ RSS](/packages/ibobdb-laravel-stisla/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

Laravel Stisla
--------------

[](#laravel-stisla)

---

LaravelStisla is an authentication starter,powered by *Laravel Fortify*.This packages can be used to start your project shorter,it include all feature that laravel recommended implementing yourself.

Instalation
-----------

[](#instalation)

---

To get started, you will need to install LaravelStisla using composer.This will install Laravel Fortify as well so.

```
composer require ibobdb/laravel-stisla

```

Next,run the install command:

```
php artisan LaravelStisla:install

```

This command will publish LaravelStisla providers,views and assets directory.

Install *Stisla* depencies. Go to stisla directory `Public/stisla`.

```
yarn install
```

It will install all assets depedencies

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

[](#configuration)

---

Add this to your `FortifyServiceProvider.php` in the `boot()` method.

```
Fortify::loginView(function () {
    return view('auth.login');
});

Fortify::registerView(function () {
    return view('auth.register');
});

Fortify::requestPasswordResetLinkView(function () {
    return view('auth.forgot-password');
});

Fortify::resetPasswordView(function ($request) {
    return view('auth.reset-password', ['request' => $request]);
});

// Fortify::verifyEmailView(function () {
//     return view('auth.verify-email');
// });

// Fortify::confirmPasswordView(function () {
//     return view('auth.confirm-password');
// });

// Fortify::twoFactorChallengeView(function () {
//     return view('auth.two-factor-challenge');
// });
```

In the file `RouteServiceProvider.php`

```
public const HOME = '/home'     //change to
public const HOME = '/dashboard'
```

Add Routes `routes/web.php`

```
Route::middleware(['auth:sanctum', 'verified'])->group(function () {
    Route::get('/dashboard', function () {
        return view('pages.dashboard');
    });
});
```

This allows you to attach the verified middleware to any of your routes

Features
--------

[](#features)

---

By default, LaravelStisla is setup to handle the basic authentication functions (Login, Register, Password Reset) provided by *Laravel Fortify*.

Email Verification
------------------

[](#email-verification)

---

To get started, ensure the emailVerification feature is enabled in your fortify configuration file's features array. Next, you should ensure that your `App\Models\User` class implements the `Illuminate\Contracts\Auth\MustVerifyEmail` interface.

```
use Illuminate\Contracts\Auth\MustVerifyEmail;

class User extends Authenticatable implements MustVerifyEmail
{
    ...
```

Stisla
------

[](#stisla)

---

Check full documentation [stisla](s)

Follow
------

[](#follow)

---

Instagram

Twitter

This allows you to attach the verified middleware to any of your routes

License
-------

[](#license)

MIT license

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity50

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

1641d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/66146251?v=4)[ibodev](/maintainers/ibodev)[@ibodev](https://github.com/ibodev)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/ibobdb-laravel-stisla/health.svg)

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

###  Alternatives

[nunomaduro/laravel-starter-kit-inertia-react

The skeleton application for the Laravel framework.

2071.1k](/packages/nunomaduro-laravel-starter-kit-inertia-react)

PHPackages © 2026

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