keluar lelong

This commit is contained in:
afiq
2021-09-03 02:26:56 +08:00
parent b4ca9c55f6
commit c85916de9b
+48
View File
@@ -0,0 +1,48 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Http;
class keluarLelong extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'keluar:lelong';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Keluar Lelong';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$updateOnline = Http::get(config('api.url') . '/api/keluar/lelong')->json();
if($updateOnline == 'successful'){
return 0;
}else{
return 'failed';
}
}
}