Download the PHP package rokde/laravel-bootstrap-formbuilder without Composer
On this page you can find all versions of the php package rokde/laravel-bootstrap-formbuilder. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download rokde/laravel-bootstrap-formbuilder
More information about rokde/laravel-bootstrap-formbuilder
Files in rokde/laravel-bootstrap-formbuilder
Package laravel-bootstrap-formbuilder
Short Description Laravel 5 FormBuilder for Blade Engine and the Twitter Bootstrap CSS Framework
License MIT
Informations about the package laravel-bootstrap-formbuilder
laravel-bootstrap-formbuilder
Laravel 5.1 FormBuilder for Blade Engine and the Twitter Bootstrap CSS Framework.
This FormBuilder enhances the Laravel Collective FormBuilder for its use within the Bootstrap CSS Framework.
Installation
$> composer require "rokde/laravel-bootstrap-formbuilder:~0.1"
For Laravel 5.1:
$> composer require "rokde/laravel-bootstrap-formbuilder:~0.0.1"
Then updating:
$> composer update
Next, add your new provider to the providers
array of config/app.php
:
Rokde\LaravelBootstrap\Html\HtmlServiceProvider::class,
Finally, add two class aliases to the aliases
array of config/app.php
:
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
We use the Facades from Laravel Collective.
Usage
All Bootstrap recommendations for form and input elements are built in, so you do not have to worry about the right classes and tag-soup.
Form Groups
{!! Form::openGroup('name', 'Name') !!}
{!! Form::text('name') !!}
{!! Form::closeGroup() !!}
Will render:
<div class="form-group"><label for="name">Name</label>
<input class="form-control" name="name" type="text" id="name">
</div>
Error handling is also included.
Further Resources
Heavily inspired by Easy Bootstrap Forms In Laravel, so the main credits goes to Stidges.
You can read at Laravel Collective another usage examples.