Files
kaunter/app/Console/Commands/updateGadai.php
T
2022-01-10 00:40:10 +08:00

45 lines
841 B
PHP

<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Http;
class updateGadai extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'update:gadai';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Update gadai for every active gadai';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return int
*/
public function handle()
{
$updategadai = Http::get(config('api.url') . '/api/update/sttebus/gadaian')->json();
$this->info('sucess');
}
}