在Laravel 5.5中集成modular-admin-html

时间:2017-10-07 12:27:08

标签: templates blade laravel-5.5

启动一个新的Laravel 5.5项目我想用作Handlebars模板附带的仪表板https://github.com/modularcode/modular-admin-html

我如何开始将模板集成为刀片?

2 个答案:

答案 0 :(得分:0)

First, you need to read templating in laravel

Download template and put js and css file inside publie/css and /js folder.

Then create one main blade file which has all js and css path.

Then use that main file to create new layout same as template html (just you need to copy only html data).

read below link for more detail.

intigration of template in laravel

答案 1 :(得分:0)

第1步:下载模板。

步骤2:只需打开模板文件夹,然后就可以看到一些文件夹(如应用程序,供应商等)。打开app文件夹,然后复制JS中包含的文件并放在应用程序public>>中。 JS文件夹类似地将模板CSS文件夹中的内容复制并粘贴到应用程序公共>> CSS文件夹

步骤3:然后从模板中复制'vendor'文件夹并放在应用程序'public'文件夹中。

步骤4:然后创建一个新的.blade.php文件

步骤5:然后从模板中复制并粘贴仪表板代码并将其粘贴到.blade.php

步骤6:然后将路线设置到仪表板并运行。