Merge branch 'kaunter' into 'new-super'

add cron

See merge request online-sistem1/kaunter!193
This commit is contained in:
arrahn pkb
2022-01-09 16:41:16 +00:00
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');
}
}