Pricing fix

This commit is contained in:
dev-chiefworks
2023-01-10 09:02:23 -05:00
parent 9df84c384f
commit fd893e019e
3 changed files with 55 additions and 9 deletions
+6 -8
View File
@@ -24,13 +24,6 @@ class Myfit extends BaseController
return $this->response->setJson($res1);
}
public function pricing()
{
$mBlogData = new \App\Models\myfitBlogData();
$res1 = $mBlogData->getBlogData([]);
return $this->response->setJson($res1);
}
public function contact()
{
$inx = array(
@@ -70,5 +63,10 @@ class Myfit extends BaseController
$mFaq = new \App\Models\myfitFaqData();
return $this->response->setJson($mFaq->getSiteFaq([]));
}
public function pricing()
{
$mPricing = new \App\Models\myfitPricing();
return $this->response->setJson($mPricing->getSitePricing([]));
}
}