Created
June 14, 2020 05:18
-
-
Save csinghdev/c02ad93566b2afd4de80660733cfb2e8 to your computer and use it in GitHub Desktop.
Command for sending Doc links to users. File Path: app/Console/Commands/SendDocLinkToUsers.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Console\Commands; | |
use App\Notifications\SendDocLinkNotification; | |
use App\User; | |
use Illuminate\Console\Command; | |
class SendDocLinkToUsers extends Command | |
{ | |
/** | |
* The name and signature of the console command. | |
* | |
* @var string | |
*/ | |
protected $signature = 'users:send_doc_link'; | |
/** | |
* The console command description. | |
* | |
* @var string | |
*/ | |
protected $description = 'Send doc link to user 1 day after registration.'; | |
/** | |
* Create a new command instance. | |
* | |
* @return void | |
*/ | |
public function __construct() | |
{ | |
parent::__construct(); | |
} | |
/** | |
* Execute the console command. | |
* | |
* @return mixed | |
*/ | |
public function handle() | |
{ | |
User::whereNotNull('email_verified_at') | |
->whereDate('created_at', now()->subDays(1)) | |
->get()->each(function ($user) { | |
$user->notify(new SendDocLinkNotification()); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment