Laravel 6 Tutorial - How to make Auth in Laravel 6

Originally published at https://itsolutionstuff.com

Laravel 6 provide septate composer package for creating Auth scaffold in Laravel 6 application. Whenever you require to create auth in Laravel 6 then you must have to install Laravel/ui package in Laravel 6.

Using Laravel/ui you can create simple view with Auth as same you did before you do. But you have to use Vue.js or React.js with Auth view in Laravel 6. But they does not provide as default you have to follow few step to do Auth.

You have to follow few step to make auth in your Laravel 6 application.

First you need to install laravel/ui package as like bellow:

composer require laravel/ui

After that you can run following command and check ui commands info.

php artisan ui --help

Output:

Description:
  Swap the front-end scaffolding for the application
Usage:
  ui [options] [--] 
Arguments:
  type                   The preset type (bootstrap, vue, react)
Options:
      --auth             Install authentication UI scaffolding
      --option[=OPTION]  Pass an option to the preset command (multiple values allowed)
  -h, --help             Display this help message
  -q, --quiet            Do not output any message
  -V, --version          Display this application version
      --ansi             Force ANSI output
      --no-ansi          Disable ANSI output
  -n, --no-interaction   Do not ask any interactive question
      --env[=ENV]        The environment the command should run under
  -v|vv|vvv, --verbose   Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug

You can use following commands for creating auth:

Using Vue:

php artisan ui vue --auth

Using React:

php artisan ui react --auth

Now you need to run npm command, otherwise you can not see better layout of login and register page.

Install NPM:

npm install

Run NPM:

npm run dev

Now you can run and check your app.

It will work great.

I hope it can help you....

Thanks for reading

If you liked this post, share it with all of your programming buddies!

Follow me on Facebook | Twitter

Further reading

Laravel 5.8 Tutorial for Beginners

What’s New in Laravel 6.0

Laravel 6 CRUD Application Tutorial

Laravel 6 Image Upload Tutorial


#laravel #php #web-development

Laravel 6 Tutorial - How to make Auth in Laravel 6
2 Likes65.30 GEEK