29 lines
706 B
PHP
29 lines
706 B
PHP
<?php
|
|
// File: App\Helpers\DepositHelper.php
|
|
|
|
namespace App\Helpers;
|
|
|
|
use App\Models\EmployeeModel;
|
|
use App\Models\CDMasterModel;
|
|
|
|
class ChatbotHelper
|
|
{
|
|
//get list of policies againest an employee_id
|
|
public static function getListOfPolicies()
|
|
{
|
|
|
|
$emp_id = 12288;
|
|
$emp_code = 'HTL-007';
|
|
$client_id = 159;
|
|
$policy_id = 0;
|
|
$client_branch_id = 126;
|
|
$relationship ='Father';
|
|
$EmployeeModel = new EmployeeModel();
|
|
return $EmployeeModel->getEmpFamilybyEmpCode(emp_code: $emp_code,client_id: $client_id,emp_status: ['draft'],policy_status:['draft'],client_branch_id:[ $client_branch_id ],relationship:[$relationship]);
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|