You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I'm using your package in combination with laravel.
publicfunctioncreateCard(User$user){
//var_dump($user);//die();$vcard = newVCard();
$vcard->add(newName($user->l_name, $user->name, '', '', ''))
->add(newTelephone($user->phone, Type::home()))
->add(newEmail($user->email, Type::home()));
$formatter = newFormatter(newVcfFormatter(), 'vcard-export');
$formatter->addVCard($vcard);
return$formatter->download();
}```
the code does work, but the phonenumber is being printed in the vcf file like `tel:0715557031`
The text was updated successfully, but these errors were encountered:
Hi I'm using your package in combination with laravel.
The text was updated successfully, but these errors were encountered: