Fix dummy cat

This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-04-25 16:18:03 -04:00
parent add8dbb406
commit 16c316c69f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ $routes->post('/en/wrench/api/v1/createmobileuser', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/completemobileuser', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/startresetpasword', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/userlogin', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/homebanners', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/homebanners', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/startjoblist', 'WrenchApi::apigate');
$routes->get('/en/wrench/api/v1/startjoblist', 'WrenchApi::apigate');
$routes->post('/en/wrench/api/v1/dashdata', 'WrenchApi::apigate');
+2 -2
View File
@@ -186,7 +186,7 @@ class ResultFormatter extends Model
'job_country' => $out["job_country_${key}"],
'currency' => 'Naira',
'currency_code' => 'NGN',
'category' => dummyGetCategory()
'category' => $this->dummyGetCategory()
);
}
@@ -227,7 +227,7 @@ class ResultFormatter extends Model
'job_country' => $out["job_country_${key}"],
'currency' => 'Naira',
'currency_code' => 'NGN',
'category' => dummyGetCategory()
'category' => $this->dummyGetCategory()
);
}