/home/techb158/ileadtechnology.com/SSM/vendor/mint/service/src/Controllers
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/mint/service/src/Controllers/HomeController.php (840B)
request = $request;
$this->repo = $repo;
}
public function about()
{
return $this->repo->product();
}
/**
* Used to get right sidebar content
*/
public function helpDoc()
{
return $this->repo->helpDoc(request('subject'));
}
/**
* Used to validate service for license request
* @return array
*/
public function licenseValidate()
{
return $this->repo->licenseValidate();
}
}