UserVerifyEmail.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace App\Console\Commands;
  3. use Illuminate\Console\Command;
  4. use Illuminate\Support\Str;
  5. use App\User;
  6. class UserVerifyEmail extends Command
  7. {
  8. /**
  9. * The name and signature of the console command.
  10. *
  11. * @var string
  12. */
  13. protected $signature = 'user:verifyemail {username}';
  14. /**
  15. * The console command description.
  16. *
  17. * @var string
  18. */
  19. protected $description = 'Verify user email address';
  20. /**
  21. * Create a new command instance.
  22. *
  23. * @return void
  24. */
  25. public function __construct()
  26. {
  27. parent::__construct();
  28. }
  29. /**
  30. * Execute the console command.
  31. *
  32. * @return mixed
  33. */
  34. public function handle()
  35. {
  36. $user = User::whereUsername($this->argument('username'))->first();
  37. if(!$user) {
  38. $this->error('Username not found');
  39. return;
  40. }
  41. $user->email_verified_at = now();
  42. $user->save();
  43. $this->info('Successfully verified email address for ' . $user->username);
  44. }
  45. }