Wizard Currencies, Taxes, Finish pages changes

This commit is contained in:
cuneytsenturk
2018-10-24 18:30:37 +03:00
parent 2ebe1e34c3
commit ac2ab267c8
16 changed files with 791 additions and 247 deletions

View File

@ -200,6 +200,17 @@ trait Modules
return [];
}
public function getFeaturedModules($data = [])
{
$response = $this->getRemote('apps/featured', 'GET', $data);
if ($response && ($response->getStatusCode() == 200)) {
return json_decode($response->getBody())->data;
}
return [];
}
public function getCoreVersion()
{
$data['query'] = Info::all();