monurakkaya/laravel-formgroup

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (1.1.4) of this package.

A blade input component for laravel & bootstrap3. Build a form with thousands of inputs within minutes!

1.1.4 2018-11-30 00:33 UTC

This package is auto-updated.

Last update: 2022-02-14 23:45:08 UTC


README

$ composer require monurakkaya/laravel-formgroup

Usage

Text Input:
    @formgroup([
        'type' => 'text',
        'name' => 'color',
        'required' => true
    ])
    Color
    @endformgroup

It will generate below html code :

        <div class="form-group">
            <label><strong>Color</strong></label>
            <input type="text" name="color" class="form-control" required="" value="">
        </div>

Text

DateTime Input:
    @formgroup([
        'name' => 'start_at',
        'type' => 'datetime'
    ])
    Alis Tarihi
    @endformgroup

It will generate a datetime picker:

DateTime