Laravel - 类“JeroenDesloovere\VCard\VCard”未找到
我正在使用 Laravel 9,当我单击按钮时,我希望它将值保存在手机上。我正在使用 'jeroendesloovere/vcard' ,但是当我调用我的函数时,我收到这样的错误:
未找到“JeroenDesloovere\VCard\VCard”类
我在哪里丢失了?我的错在哪里?
控制器:
use JeroenDesloovere\VCard\VCard;
public function vcards($name,$phone){
$vcard = new VCard();
// define variables
$lastname = 'Desloovere';
$firstname = 'Jeroen';
$additional = '';
$prefix = '';
$suffix = '';
// add personal data
$vcard->addName($lastname, $firstname, $additional, $prefix, $suffix);
}
Blade.php
<a href="#" onclick="{{HomeController::vcards($userData->full_name,$userData->masked_phone_number)}}" class="btn btn-info">add</a>
I'm using Laravel 9, and when I click the button, I want it to save the values on the phone. I'm using 'jeroendesloovere/vcard' for this but when i call my function i get such error:
Class 'JeroenDesloovere\VCard\VCard' not found
Where am I missing? Where is my fault?
Controller:
use JeroenDesloovere\VCard\VCard;
public function vcards($name,$phone){
$vcard = new VCard();
// define variables
$lastname = 'Desloovere';
$firstname = 'Jeroen';
$additional = '';
$prefix = '';
$suffix = '';
// add personal data
$vcard->addName($lastname, $firstname, $additional, $prefix, $suffix);
}
Blade.php
<a href="#" onclick="{{HomeController::vcards($userData->full_name,$userData->masked_phone_number)}}" class="btn btn-info">add</a>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该软件包未安装
您可以使用安装它
The package is not installed
You can install it using