定制 bgaze/bootstrap-form 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

bgaze/bootstrap-form

Composer 安装命令:

composer require bgaze/bootstrap-form

包简介

Bootstrap 4 forms builder for Laravel 5.8+

README 文档

README

GitHub license Maintenance GitHub release (latest by date) GitHub Repo stars Packagist

Bootstrap 4 forms builder for Laravel 6+

This package uses in background Laravel Collective HTML to simplify Bootstrap forms creation into Laravel applications.

It renders Bootstrap 4 markup by default, and supports Bootstrap 5 as an opt-in (see Bootstrap 5 support below): existing applications are not impacted until they opt in.

Model form binding and automatic error display are supported, as well as most of Bootstrap forms features : form layouts, custom fields, input groups, ...

Any contribution or feedback is highly welcomed, please feel free to create a pull request or submit a new issue.

Documentation

Full documentation and examples are available at https://packages.bgaze.fr/bootstrap-form

If you use PhpStorm IDE, you can also check this gist which allow to easily configure syntax highlighting and live templates for this package's custom Blade directives.

Quick start

Simply install the package using Composer:

composer require bgaze/bootstrap-form

There are a various configuration options available, publish the configuration file to customize them:

php artisan vendor:publish --provider="Bgaze\BootstrapForm\BootstrapFormServiceProvider"

The BF facade provides many methods to create forms and inputs:

echo BF::open(['url' => '/my/url', 'novalidate' => true])
echo BF::text('login')
echo BF::email('email')
echo BF::checkbox('remember_me', null, 1, null, ['switch' => true, 'inline' => true])
echo BF::submit('Login')
echo BF::close()

Most of them have a Blade directive alias to ease form creation from Blade templates:

@open(['url' => '/my/url', 'novalidate' => true])
@text('login')
@email('email')
@checkbox('remember_me', null, 1, null, ['switch' => true, 'inline' => true])
@submit('Login')
@close

Bootstrap 5 support

Since v3.0, the package can render Bootstrap 5 markup. Bootstrap 4 stays the default, so existing applications are not impacted until they explicitly opt in.

Enable Bootstrap 5 application wide in the published configuration file:

// config/bootstrap_form.php
'bootstrap_version' => 5,

Or opt in for a single form (all its fields inherit the version):

@open(['url' => '/my/url', 'bootstrap_version' => 5])

Or for a single field:

@text('login', null, null, ['bootstrap_version' => 5])

Vertical and horizontal layouts are fully supported. Inline forms are best-effort: Bootstrap 5 reworked the inline layout and it may require additional markup on your side.

The custom option (Bootstrap 4 native vs custom controls) is a no-op in Bootstrap 5, where custom controls were merged into the default styles.

Upgrading from v2 to v3

v3 is backward compatible at runtime: with the default bootstrap_version (4), the rendered HTML is unchanged. The only breaking change is the configuration file structure: the layout options (custom, left_class, right_class, pull_right, lspace, hspace, vspace) now live under per-version sections.

If you had published and customized the configuration file, republish it and move your customizations under the bootstrap4 (and/or bootstrap5) key:

php artisan vendor:publish --provider="Bgaze\BootstrapForm\BootstrapFormServiceProvider" --force

Applications that never published the configuration file have nothing to do.

统计信息

  • 总下载量: 50.97k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 52
  • 点击次数: 5
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 52
  • Watchers: 4
  • Forks: 5
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-11-07

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固