我使用此cmd命令在作曲家的Laravel项目中安装了bootstrap plugin:
composer require twbs/bootstrap:4.0.0-alpha.3
问题是:
1)我是laravel的新手并且经常搜索这个问题,我发现的每一个都是关于使用nmp
命令并且我使用的是 Windows 而不是 Mac
2)我在公共文件夹中没有任何引导程序文件。找不到这种结构:
├── css/
│ ├── bootstrap.css
│ ├── bootstrap.css.map
│ ├── bootstrap.min.css
│ ├── bootstrap.min.css.map
│ ├── bootstrap-theme.css
│ ├── bootstrap-theme.css.map
│ ├── bootstrap-theme.min.css
│ └── bootstrap-theme.min.css.map
├── js/
│ ├── bootstrap.js
│ └── bootstrap.min.js
└── fonts/
├── glyphicons-halflings-regular.eot
├── glyphicons-halflings-regular.svg
├── glyphicons-halflings-regular.ttf
├── glyphicons-halflings-regular.woff
└── glyphicons-halflings-regular.woff2
如何从供应商加载引导程序到我的刀片?
什么手动下载引导文件和使用composer安装它之间的区别?以及如何以任何方式在我的刀片中集成引导程序文件?
同样的问题安装 blogify 和 AdminLTE ..无法使用任何下载的软件包作曲家
用于:
Windows 10 XAMP
答案 0 :(得分:1)
如何从供应商加载引导程序到我的刀片?
正如manual所提到的,您有更多选项可以安装bootstrap。
Download the latest release. Clone the repo: git clone https://github.com/twbs/bootstrap.git. Install with Bower: bower install bootstrap. Install with npm: npm install bootstrap@3. Install with Meteor: meteor add twbs:bootstrap. Install with Composer: composer require twbs/bootstrap.
如果您已经安装了任何选项,请尝试其他选项。
目标是将文件放入/ public文件夹,从中可以从浏览器访问这些文件,HTML可以正常工作。
手动下载引导程序文件有什么区别 和作曲家一起安装?以及如何集成引导程序 我的刀片中的文件是什么方式?
没什么。 Composer,npm,bower和其他人会将文件从存储库下载到您运行该命令的文件夹。
因此,请在 public 文件夹中运行这些命令。
您没有提及是否有任何错误或某些内容可能涉及未完成的操作。
如果命令不起作用,您仍然可以手动下载,如已经说明的那样,应该保存到公共文件夹。
您的 index.blade.php 标签中应包含以下内容:
<link href="<?php echo url("css/bootstrap.min.css"); ?>" stylesheet' type='text/css'>
或使用elixir
<link href="{{ elixir('css/app.css') }}" rel="stylesheet">