LaravelPackages.net
Acme Inc.
Toggle sidebar
fuzaylov/bootstrap

Helper library to create Bootstrap html fields

115
6
0.3.2
About fuzaylov/bootstrap

fuzaylov/bootstrap is a Laravel package for helper library to create bootstrap html fields. It currently has 6 GitHub stars and 115 downloads on Packagist (latest version 0.3.2). Install it with composer require fuzaylov/bootstrap. Discover more Laravel packages by fuzaylov or browse all Laravel packages to compare alternatives.

Last updated

Laravel Bootstrap Helpers

If you find yourself entering the same HTML and blade code just to display an html form field, this package might be for you.

Install

Pull this package in through Composer.

{
    "require": {
        "fuzaylov/bootstrap": "0.3.0"
    }
}

Laravel 5

Note, for laravel 4, use fuzaylov/bootstrap version 0.2.5

Once installed, you need to register Laravel service provider, in your app/config/app.php:

'providers' => array(
	...
	'Illuminate\Html\HtmlServiceProvider',
    'Fuzaylov\Bootstrap\BootstrapServiceProvider'
)

'aliases' => array(
    ...
    'Form'      => 'Illuminate\Html\FormFacade',
)

Usage

See tests/sample.blade.php for some sample usages. For a full list of supported fields, see Bootstrap.php

Have fun!

Aleks

Comments