| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- use App\Jobs\EmailsJob;
- class emails extends Command
- {
- /**
- * The name and signature of the console command.
- *
- * @var string
- */
- protected $signature = 'app:emails';
- /**
- * The console command description.
- *
- * @var string
- */
- protected $description = 'To generate emails';
- /**
- * Execute the console command.
- */
- public function handle()
- {
- EmailsJob::dispatch()->onQueue('gpt-emails');
- }
- }
|