Skip to content

Instantly share code, notes, and snippets.

View howdu's full-sized avatar
🏠
We cannot solve our problems with the same thinking we used when we created them

Ben howdu

🏠
We cannot solve our problems with the same thinking we used when we created them
View GitHub Profile
@howdu
howdu / ResetPassword.php
Last active June 6, 2021 14:01 — forked from ZhangYiJiang/ResetPassword.php
Reset user password command for Laravel
<?php
namespace App\Console\Commands;
use App\User;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
class ResetPassword extends Command