change join to left_outer_join

This commit is contained in:
Ibnu Maksum
2024-05-21 11:45:23 +07:00
parent fc74589a2a
commit 94e6f7fe6c
6 changed files with 57 additions and 53 deletions

View File

@ -96,7 +96,7 @@ switch ($action) {
->select('routers')
->select('status')
->select('method', 'Payment')
->join('tbl_user_recharges', array('tbl_customers.id', '=', 'tbl_user_recharges.customer_id'))
->left_outer_join('tbl_user_recharges', array('tbl_customers.id', '=', 'tbl_user_recharges.customer_id'))
->order_by_asc('tbl_customers.id')
->find_array();