fuzaylov/bootstrap

Helper library to create Bootstrap html fields
115 6
Install
composer require fuzaylov/bootstrap
Latest Version:0.3.2
PHP:>=5.3.0
License:MIT
Last Updated:Jun 24, 2015
Links: GitHub  ·  Packagist
Maintainer: fuzaylov

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

Related Packages

nayjest/grids

Grids for Laravel 4 & Laravel 5 frameworks

155,434 200
yocmen/html-minify

Minifies the HTML output of Laravel 5 applications (Originally from https://gith...

13,735 16
fitztrev/laravel-html-minify

Minifies the HTML output of Laravel 4 applications

214,922 415
yocmen/blade-components

This package introduces the concept of components in blade templating, take it f...

1,252 8