Files
digifi-mware/app/Controllers/BkoReports.php
T
CHIEFSOFT\ameye 2897cf9461 fix uid
2024-04-30 10:10:11 -04:00

21 lines
495 B
PHP

<?php
namespace App\Controllers;
use CodeIgniter\HTTP\ResponseInterface;
class BkoReports extends BaseController
{
public function startedApplication() :ResponseInterface
{
//SELECT uid,loan_amount,payment_month,sales_agent,gender,marital_status,email,address,state,country,status,added,updated FROM applications;
return $this->respond([], 200);
}
public function pendingApplication() :ResponseInterface
{
return $this->respond([], 200);
}
}