36 lines
621 B
PHP
36 lines
621 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
use App\Jobs\BroadbandTraffic as Job;
|
|
use App\Models\AdslSupplier;
|
|
|
|
class BroadbandTraffic extends Command
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'broadband:traffic:import';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Import Broadband Traffic from Suppliers';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
foreach (AdslSupplier::active()->get() as $o)
|
|
Job::dispatch($o);
|
|
}
|
|
} |