PHPackages                             westacks/laravel-auth - 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. westacks/laravel-auth

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

westacks/laravel-auth
=====================

Backend controllers and scaffolding for building your own Laravel authentication.

2.0.5(2y ago)07071MITBladePHP ^7.2 || ^8.0

Since May 13Pushed 2y ago1 watchersCompare

[ Source](https://github.com/westacks/laravel-auth)[ Packagist](https://packagist.org/packages/westacks/laravel-auth)[ Docs](https://github.com/westacks/telebot)[ RSS](/packages/westacks-laravel-auth/feed)WikiDiscussions master Synced 6d ago

READMEChangelog (7)Dependencies (1)Versions (8)Used By (0)

Laravel Auth
============

[](#laravel-auth)

[![Latest Stable Version](https://camo.githubusercontent.com/bb734fcf6aaaa9e90c09217b6393d7230e847d641063d75977121e5b3242724b/68747470733a2f2f706f7365722e707567782e6f72672f7765737461636b732f6c61726176656c2d617574682f762f737461626c652e737667)](https://packagist.org/packages/westacks/laravel-auth)[![Total Downloads](https://camo.githubusercontent.com/0fa1edec397f9233b3147e6a449a35ed9327cd0c4b41f6f6ded5e9752fc0f0d8/68747470733a2f2f706f7365722e707567782e6f72672f7765737461636b732f6c61726176656c2d617574682f642f746f74616c2e737667)](https://packagist.org/packages/westacks/laravel-auth)[![License](https://camo.githubusercontent.com/0d94b1dc5dc1a50180b7ab47872d9db4f54e54e91c488d1335221ef69ac229ac/68747470733a2f2f706f7365722e707567782e6f72672f7765737461636b732f6c61726176656c2d617574682f6c6963656e73652e737667)](https://packagist.org/packages/westacks/laravel-auth)

Laravel Auth is a collection of reusable modules to build your own laravel authentication comfortably. It comfortably integrates into any Laravel application with 1 line of code. This package is what `laravel/ui` should have been and `laravel/fortify` have not became.

### Another Laravel authentication package?

[](#another-laravel-authentication-package)

Yes. The goal of this package is to have a built in modular Laravel authentication and keep flexibility without configuring an additional packages.

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

[](#installation)

Only Laravel `+5.5` supported by the library. You can istall package using composer:

```
composer require westacks/laravel-auth
```

The package will self-register it's ServiceProvider using Laravel's auto-discovery. If you turned off auto-discovery for some reason, you need to register service provider manually in `config/app.php`:

```
'providers' => [
    /*
     * Package Service Providers...
     */
    WeStacks\Laravel\Auth\Providers\AuthServiceProvider::class,
],
```

Usage
-----

[](#usage)

If you need just basic auth, you only need to define controller routes in your `routes/web.php` file:

```
# routes/web.php
