laravel add user

Solutions on MaxInterview for laravel add user by the best coders in the world

showing results for - "laravel add user"
Ricardo
06 Apr 2020
1php artisan tinker
2DB::table('users')->insert(['name'=>'MyUsername','email'=>'thisis@myemail.com','password'=>Hash::make('123456')])
Samuel
23 Jun 2018
1use Illuminate\Support\Facades\Auth;
2
3Auth::login($user);