dev-master
9999999-dev https://github.com/apalette/laravel-auth-scaffoldLaravel 5 authentification scaffold with email verification (FR)
MIT
The Requires
- php >=5.4.0
- illuminate/support ~5.2
mail scaffold login verification authentification
Wallogit.com
2017 © Pedro PelĂĄez
Laravel 5 authentification scaffold with email verification (FR)
This package will create a basic authentification scaffold with email verification for Laravel 5.3 (French language for now), (*1)
Add Auth Scaffold to your composer.json file to require Bootstrap :, (*2)
require : {
"laravel/framework": "5.3.*",
"codeuz/auth-scaffold": "dev-master"
}
Update Composer :, (*3)
composer update
The next required step is to add the service provider to config/app.php :, (*4)
Codeuz\AuthScaffold\AuthScaffoldServiceProvider::class
The next required step is to publish files in your application with :, (*5)
php artisan vendor:publish --force
Configure .env file with database and mail variables :, (*6)
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_db_name
DB_USERNAME=your_db_user
DB_PASSWORD=your_db_password
...
// Mailjet example
MAIL_DRIVER=smtp
MAIL_HOST=in-v3.mailjet.com
MAIL_PORT=25
MAIL_USERNAME=user_key
MAIL_PASSWORD=user_password
MAIL_ENCRYPTION=tls
Configure config/app.php with Timezone and Locale :, (*7)
'timezone' => 'Europe/Brussels',
'locale' => 'fr',
Configure config/mail.php with mail sender :, (*8)
'from' => ['address' => 'contact@mysite.com', 'name' => 'Mail sender of my site'],
The next required step is to create database tables with :, (*9)
php artisan migrate
You can now edit each file and custom it., (*10)
Congratulations, you have successfully installed Auth Scaffold Package !, (*11)
Laravel 5 authentification scaffold with email verification (FR)
MIT
mail scaffold login verification authentification