0

我已經安裝使用這個cmd命令的bootstrap plugin Laravel項目中由作曲家:Laravel 5.2 - 在安裝軟件包問題

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 

如何從供應商加載引導到我的刀?

什麼是手動下載引導文件和使用作曲家安裝它之間的區別?以及如何以任何方式將引導文件集成到刀片中?

同樣的問題與安裝blogifyAdminLTE ..不能使用與作曲家

用於下載的任何包:

的Windows 10 XAMP

+0

要包括CSS文件(在你的情況自舉),簡單地包括刀片模板中的CSS文件......當然,您需要將這些文件放在「公共」文件夾中。 – pbalazek

回答

1

如何加載bootstrap從供應商到我的刀片?

隨着manual提到,您有更多選項來安裝引導程序。

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 [email protected] 
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"> 
+0

所以事情是這樣的,作曲家只是爲了下載,但然後我必須從供應商剪切文件,並將其放置在我的公用文件夾中。我能幫你嗎? –

+0

我已經更新了我的答案。 - Composer是PHP中依賴管理的工具。它允許你聲明你的項目依賴的庫,它會爲你管理(安裝/更新)它們。 – pbalazek

+0

供應商文件夾不應該被編輯,直到你知道你在做什麼。如前所述,將文件作爲bootstrap放入laravels公用文件夾中。 – pbalazek