LaravelPackages.net
Acme Inc.
Toggle sidebar
tonmoynandy/signme

Laravel : It is used to set up the general featuers of an admin panel

26
1
1.4
About tonmoynandy/signme

tonmoynandy/signme is a Laravel package for laravel : it is used to set up the general featuers of an admin panel. It currently has 1 GitHub stars and 26 downloads on Packagist (latest version 1.4). Install it with composer require tonmoynandy/signme. Discover more Laravel packages by tonmoynandy or browse all Laravel packages to compare alternatives.

Last updated

Laravel 5 Generate Sign in Process

A simple Laravel 5 service provider with some basic configuration to generate the sign in , sign up process.

Installation

This package is only installed via composer by requiring the composer require binssoft/signme package in your project's composer.json. (The installation may take a while. Sadly its .git folder is very heavy)

{
    "require": {
        "binssoft/signme": "<version-name>"
    }
}

Next, add the service provider to config/app.php.

'providers' => [
    //..
    binssoft\signme\SignmeServiceProvider::class
]

That's it! You're good to go.

Configuration

php artisan vendor:publish

After proper vendor publish few files are created

  1. in app/Http/Controllers folder SignmeController.php

  2. in resources/views/home folder

    a) signin.balde.php

    b) signup.balde.php

    c) forget-password.balde.php

    c) change-password.balde.php

  3. in routes/web.php few routes will be updated

Now your all signin process is generated successfully

Comments