2017 © Pedro PelĂĄez
 

library auth-scaffold

Laravel 5 authentification scaffold with email verification (FR)

image

codeuz/auth-scaffold

Laravel 5 authentification scaffold with email verification (FR)

  • Friday, October 14, 2016
  • by apalette
  • Repository
  • 1 Watchers
  • 1 Stars
  • 15 Installations
  • HTML
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Laravel Auth Scaffold

Description

This package will create a basic authentification scaffold with email verification for Laravel 5.3 (French language for now), (*1)

Installation

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

Publish

The next required step is to publish files in your application with :, (*5)

    php artisan vendor:publish --force

Configure your app

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'],

Database Migration

The next required step is to create database tables with :, (*9)

    php artisan migrate

Render

You can now edit each file and custom it., (*10)

Congratulations, you have successfully installed Auth Scaffold Package !, (*11)

The Versions

14/10 2016

dev-master

9999999-dev https://github.com/apalette/laravel-auth-scaffold

Laravel 5 authentification scaffold with email verification (FR)

  Sources   Download

MIT

The Requires

 

mail scaffold login verification authentification