我是Laravel(5.6)的新手,我想知道在框架中安装和设置编写器包的正确方法是什么,特别是:https://github.com/igorescobar/jQuery-Mask-Plugin (这是一个Jquery插件)
我几乎阅读了所有文档,但我不明白。我通过作曲家安装了它。一切都很好,但我不能让它运作起来:
Coposer.json
"require": {
"php": "^7.1.3",
"fideloper/proxy": "^4.0",
"igorescobar/jquery-mask-plugin": "^1.14",
现在我应该在我的控制器中使用以下其中一种吗?
use JqueryMaskPlugin;
use Igorescobar\JqueryMaskPlugin;
或者可能在视图中加载它?
<script type="text/javascript" src="{{ asset('igorescobar/jquery-mask-plugin') }}"></script>
//Is there a 'vendor asset' blade shortcut?
谢谢,对不起我的英文! =)