Files
kaunter/app/Console/Commands/initiateTunai.php
T
2021-12-23 12:39:55 +08:00

49 lines
905 B
PHP

<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Http;
class initiateTunai extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'initiate:tunai';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Initiate Tunai';
/**
* 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/initiate/tunai')->json();
if($updateOnline == 'successful'){
return 0;
}else{
return 'failed';
}
}
}