This commit is contained in:
2024-10-01 19:07:23 +05:00
parent 9fecfccf22
commit 4dde4b357a
26 changed files with 26396 additions and 262 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Http;
class FetchCardHistoryController extends Controller
{
public function index()
{
$response = Http::withBody('{
"idSeria": "I-AS",
"idNo": "314567",
"clientType":"recipient",
"cardMaskNumber":"993403******3258",
"expDate": "07/49"
}')->acceptJson()->post('http://10.3.158.102:9999/api/clientinfo');
return $response->body();
}
}