This commit is contained in:
f4ilji
2024-12-03 22:36:36 +05:00
parent d0a9e663b7
commit 081f1a1c85
5 changed files with 148 additions and 29 deletions
+31
View File
@@ -0,0 +1,31 @@
<?php
namespace App\Console\Commands;
use App\Jobs\ImportUsers;
use Illuminate\Console\Command;
class TransferUsers extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'import:transfer-users';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Execute the console command.
*/
public function handle()
{
ImportUsers::dispatch();
}
}