Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qirolab/laravel-fortify-example
Laravel Authentication Scaffold using Laravel Fortify and Bootstrap.
https://github.com/qirolab/laravel-fortify-example
bootstrap fortify laravel laravel-fortify laravel-framework laravel8
Last synced: about 1 month ago
JSON representation
Laravel Authentication Scaffold using Laravel Fortify and Bootstrap.
- Host: GitHub
- URL: https://github.com/qirolab/laravel-fortify-example
- Owner: qirolab
- Created: 2020-11-19T20:05:33.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T13:16:09.000Z (7 months ago)
- Last Synced: 2024-09-28T19:41:53.826Z (about 2 months ago)
- Topics: bootstrap, fortify, laravel, laravel-fortify, laravel-framework, laravel8
- Language: PHP
- Homepage: https://qirolab.com
- Size: 353 KB
- Stars: 24
- Watchers: 1
- Forks: 26
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Fortify Example
Laravel Authentication Scaffold using Laravel Fortify and Bootstrap.## Video Tutorials
1. [Authentication Scaffolding Using Laravel Fortify](https://www.youtube.com/watch?v=CLsyHP7x0N0)
2. [Forget Password & User Profile Update with Laravel Fortify](https://www.youtube.com/watch?v=NTc5FXmnWYc)
3. [Email Verification using Laravel Fortify](https://www.youtube.com/watch?v=X0ebWjcQ-uc)
4. [Two Factor Authentication (2FA) with Laravel Fortify](https://www.youtube.com/watch?v=rDCqS277dVQ)## How To Use This?
Download or clone this repo
```shell
$ git clone https://github.com/qirolab/laravel-fortify-example.git
```Install all dependency required by Laravel.
```shell
$ composer install
```Generate app key, configure `.env` file and do migration.
```shell
# create copy of .env
$ cp .env.example .env# create Laravel key
$ php artisan key:generate# run migration
$ php artisan migrate
```