我跟随this turotial作为基本的laravel学习。我执行了composer require illuminate/html
。要在我的项目中导入bootstrap,在'providers'中,我添加了
Illuminate\View\ViewServiceProvider::class,
Illuminate\Html\HtmlServiceProvider::class,
在alaises中,我添加了
'Form'=> Illuminate\Html\FormFacade::class,
'Html'=> Illuminate\Html\HtmlFacade::class,
但是引导程序似乎没有用。
{!! Form::open() !!}
<div class="form-group">
{!! Form::label("name : ", "Your name") !!}
{!! Form::text("username", null, ["class"=>"form-control"]) !!}
</div>
{!! Form::close() !!}
文本字段不会延伸到页面的宽度,因为它应该如此。
知道为什么会这样吗?或任何其他替代解决方案?
答案 0 :(得分:4)
您需要在html模板文件中包含指向bootstrap的链接。
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
<div id = "container">
@yield("content")
</div>
</body>
</html>