项目作者: qirolab

项目描述 :
Laravel Authentication Scaffold using Laravel Fortify and Bootstrap.
高级语言: PHP
项目地址: git://github.com/qirolab/laravel-fortify-example.git
创建时间: 2020-11-19T20:05:33Z
项目社区:https://github.com/qirolab/laravel-fortify-example

开源协议:

下载


Laravel Fortify Example

Laravel Authentication Scaffold using Laravel Fortify and Bootstrap.

Video Tutorials

  1. Authentication Scaffolding Using Laravel Fortify
  2. Forget Password & User Profile Update with Laravel Fortify
  3. Email Verification using Laravel Fortify
  4. Two Factor Authentication (2FA) with Laravel Fortify

How To Use This?

Download or clone this repo

  1. $ git clone https://github.com/qirolab/laravel-fortify-example.git

Install all dependency required by Laravel.

  1. $ composer install

Generate app key, configure .env file and do migration.

  1. # create copy of .env
  2. $ cp .env.example .env
  3. # create Laravel key
  4. $ php artisan key:generate
  5. # run migration
  6. $ php artisan migrate