Uncategorized

How to Change User’s Password in Laravel

Pinterest LinkedIn Tumblr

Run in the termincal

php artisan tinker
$user = App\Model\User::where('email', '[email protected]')->first();
$user->password = Hash::make('123456');

Write A Comment