akkurateio/laravel-auth

This package is abandoned and no longer maintained. No replacement package was suggested.

Auth logic for Akkurate Ecosystem

v0.1.3 2021-01-12 11:37 UTC

This package is auto-updated.

Last update: 2021-02-13 15:55:44 UTC


README

Module for authenticate a user before accessing the application.

Installation

This package can be installed through Composer.

composer require akkurate/laravel-auth

Optionally, you can:

Publish the views with this command:

php artisan vendor:publish --provider="Akkurate\LaravelAuth\LaravelAuthServiceProvider" --tag="views"

Publish as well the config file with this command:

php artisan vendor:publish --provider="Akkurate\LaravelAuth\LaravelAuthServiceProvider" --tag="config"

Publish the sass with this command:

php artisan vendor:publish --provider="Akkurate\LaravelAuth\LaravelAuthServiceProvider" --tag="sass"

Utilisation

You can customize the email address verification by an insert of this method inside your User model.

public function sendEmailVerificationNotification()
{
    $this->notify(new \Akkurate\LaravelAuth\Notifications\VerifyEmailNotification());
}