wzulfikar/laravel-bootstrap

此包的最新版本(dev-master)没有提供许可证信息。

dev-master 2015-12-16 08:03 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:36:47 UTC


README

带有脚手架的laravel Bootstrap模板

安装

  • bootstrap 文件夹复制到 resources/views/layouts。您的资源目录将如下所示

image

  • bootstrap/assets 复制到 public/assets
  • 设置路由进行测试
Route::get('bootstrap/{playground?}',function($playground = 'readme'){

$validator = Validator::make(Request::all(), [
  'title' => 'required|unique:posts|max:255',
  'body' => 'required',
]);

// Uncomment below code to display template with no error banner
// return view('layouts.bootstrap.playground.'.$playground);

return view('layouts.bootstrap.playground.'.$playground)->withErrors($validator);

});