This commit is contained in:
afiq
2022-01-10 00:40:10 +08:00
parent f0396ee2e3
commit e144bcdadc
2 changed files with 88 additions and 0 deletions
@@ -0,0 +1,44 @@
<?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:lelongtawarruq';
/**
* 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/check/lelong/tawarruq')->json();
$this->info('sucess');
}
}
+44
View File
@@ -0,0 +1,44 @@
<?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');
}
}