Answers for "can we used auth function in laravel without installing auth"

PHP
4

install laravel auth

1 - composer create-project laravel/laravel laravel8 8.0
2 - composer require laravel/ui
3 - php artisan ui vue --auth
4 - npm install
5 - npm run dev
6 - php artisan ui:auth
  
7 = > url example.com/login
Posted by: Guest on June-18-2021
13

laravel auth

//namespace
use Illuminate\Support\Facades\Auth;
Posted by: Guest on May-17-2020

Code answers related to "can we used auth function in laravel without installing auth"

Browse Popular Code Answers by Language