Laravel Bootstrap-如何使用该包



我已经通过composer使用以下cmd命令在Laravel项目中安装了引导插件:

composer require twbs/bootstrap:4.0.0-alpha.3

但我在公用文件夹中没有任何引导文件。找不到此结构:

├── 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安装引导程序文件有什么区别?以及如何在我的刀片中集成引导文件?

已使用

  • Windows 10
  • 示例

文件将在/vender文件夹中。

由于您需要在公共文件夹中复制它们,您可以手动复制它们,或者,对于任何大型项目,最好使用Laravel的Elixir。

使用Elixir,你可以做一些类似于Gulp的事情:Lint、Minify、混合文件和版本控制等…

当然,您可以定义一个输入文件夹(/vender)和一个输出文件夹(/public)。

相关内容

  • 没有找到相关文章

最新更新