Looking to hire Laravel developers? Try LaraJobs

laravel-auth maintained by akkurateio

Description
Auth logic for Akkurate Ecosystem
Author
Last update
2021/01/13 16:36 (0.x-dev)
License
Links
Downloads
62

Comments
comments powered by Disqus

Laravel Auth

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());
}