An open API service indexing awesome lists of open source software.

https://github.com/avinashn/laravel-adminlte-withlogin

A basic Laravel 5.6 project with AdiminLTE integrated with a custom login functionality
https://github.com/avinashn/laravel-adminlte-withlogin

admin-dashboard adminlte adminlte-template custom-login laravel laravel56

Last synced: 11 months ago
JSON representation

A basic Laravel 5.6 project with AdiminLTE integrated with a custom login functionality

Awesome Lists containing this project

README

          

# laravel-adminLte-withLogin
A basic Laravel 5.6 project with AdiminLTE integrated with a custom login functionality

## Prerequisites


  • After cloning this repository, go to the root folder, run the following command/s,

    composer install
    composer update


  • Rename .env.example to .env and provide your database details there.

  • Import the sql file located at /resources/assets/super_admin.sql

## Running the project


  • Open `/admin` route on the browser(http://localhost:8000/admin - or whatever it is)

  • Enter the user name as 'super_admin' and password as 'super_admin'

## Changing the salt for the encrypted password
Open .env file and change the salt to what ever you want

## Change the password
Enter a password you want in the form and `dd(sha1($salt.$password));` at \app\Traits\LoginTrait.php at line 18, and save the hash as you password in the table :D :P

Alternatively you can create a registration form and then hash the entered password as `sha1($salt.$password)` and save it in the database.