Skip to content

Commit

Permalink
Add Manually verify email address command
Browse files Browse the repository at this point in the history
  • Loading branch information
dansup committed Nov 18, 2022
1 parent 4b8dc17 commit 682f5f0
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions app/Console/Commands/UserVerifyEmail.php
@@ -0,0 +1,53 @@
<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use Illuminate\Support\Str;
use App\User;

class UserVerifyEmail extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'user:verifyemail {username}';

/**
* The console command description.
*
* @var string
*/
protected $description = 'Verify user email address';

/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}

/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$user = User::whereUsername($this->argument('username'))->first();

if(!$user) {
$this->error('Username not found');
return;
}

$user->email_verified_at = now();
$user->save();
$this->info('Successfully verified email address for ' . $user->username);
}
}

0 comments on commit 682f5f0

Please sign in to comment.