get return value from another function laravel code example
Example: get return value from another function laravel
public function Gettoken()
{
...
return $xtoken;
}
public function registerUser()
{
$xtoken = $this->Gettoken();
...
}