sag
This commit is contained in:
@@ -12,7 +12,7 @@ class keluarLelong extends Command
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'keluar:lelong';
|
||||
protected $signature = 'keluar:lelong {--all : all zone} {--1 : update zone 1} {--2 : update zone 2} {--3 : update zone3}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
@@ -38,8 +38,22 @@ class keluarLelong extends Command
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
$updateOnline = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/keluar/lelong')->json();
|
||||
$updateOnline = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/keluar/lelong/tawarruq')->json();
|
||||
if($this->option('all')){
|
||||
$zone = 'all';
|
||||
}else if($this->option('1')){
|
||||
$zone = '1';
|
||||
}else if ($this->option('2')){
|
||||
$zone = '2';
|
||||
}else if ($this->option('3')){
|
||||
$zone = '3';
|
||||
}
|
||||
|
||||
$updateOnline = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/keluar/lelong',[
|
||||
'zone' => $zone
|
||||
])->json();
|
||||
$updateOnline = Http::withOptions(['verify' => config('app.api_verify')])->get(config('api.url') . '/api/keluar/lelong/tawarruq',[
|
||||
'zone' => $zone
|
||||
])->json();
|
||||
if($updateOnline == 'successful'){
|
||||
return 0;
|
||||
}else{
|
||||
|
||||
Reference in New Issue
Block a user