2017 © Pedro Peláez
 

library easyform

Laravel form builder,Easy way to make Forms with laravel

image

dinesh/easyform

Laravel form builder,Easy way to make Forms with laravel

  • Thursday, August 13, 2015
  • by Dinesh
  • Repository
  • 2 Watchers
  • 1 Stars
  • 679 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 4 % Grown

The README.md

easyform

Installation

Latest Stable Version Total Downloads Latest Unstable Version License Build Status, (*1)

Begin by installing this package through Composer. Edit your project's composer.json file to require dinesh/easyform., (*2)

"require": {
    "laravel/framework": "4.*",
    "dinesh/easyform": "dev-master"
}

Next, update Composer from the Terminal:, (*3)

composer update

OR, (*4)

composer require dinesh/easyform:dev-master

Once this operation completes, the next step is to add the service provider. Open app/config/app.php, and add a new item to the providers array., (*5)

'Dinesh\Easyform\EasyformServiceProvider',

Next, you need to publish it's config file(s)., (*6)

php artisan config:publish dinesh/easyform

default config template, (*7)


return array( 'templates' => array( 'default' => '
{{label}}
{{tag}} {{error-first}}
', 'default2' => '
{{label}}00000000
{{tag}}
', ), 'tags' => array('{{test}}' => 'default_value'), );

example, (*8)


{{EasyForm::text('first_name',null,array('class'=> 'form-control')) ->label('First Name:',array('class'=>'col-sm-2 control-label')) ->error($errors)}}

The Versions

13/08 2015

dev-master

9999999-dev

Laravel form builder,Easy way to make Forms with laravel

  Sources   Download

MIT

The Requires

 

by Dinesh Rabara

laravel form easy form builder