50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Console\Commands;
|
||
|
|
||
|
use App\Models\User;
|
||
|
use Illuminate\Console\Command;
|
||
|
use Illuminate\Support\Facades\Hash;
|
||
|
|
||
|
use function Laravel\Prompts\password;
|
||
|
|
||
|
class ResetRootPassword extends Command
|
||
|
{
|
||
|
/**
|
||
|
* The name and signature of the console command.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $signature = 'app:reset-root-password';
|
||
|
|
||
|
/**
|
||
|
* The console command description.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $description = 'Reset Root Password';
|
||
|
|
||
|
/**
|
||
|
* Execute the console command.
|
||
|
*/
|
||
|
public function handle()
|
||
|
{
|
||
|
//
|
||
|
$this->info('You are about to reset the root password.');
|
||
|
$password = password('Give me a new password for root user: ');
|
||
|
$passwordAgain = password('Again');
|
||
|
if ($password != $passwordAgain) {
|
||
|
$this->error('Passwords do not match.');
|
||
|
return;
|
||
|
}
|
||
|
$this->info('Updating root password...');
|
||
|
try {
|
||
|
User::find(0)->update(['password' => Hash::make($password)]);
|
||
|
$this->info('Root password updated successfully.');
|
||
|
} catch (\Exception $e) {
|
||
|
$this->error('Failed to update root password.');
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
}
|