Skip to content

rcrowe/form

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Meido Form Build Status

A port of Laravel 3's Form class. Made to work with Laravel 4.

Usage

Composer Side

add "meido/form": "1.0.*" to the require section of your composer.json so that it should look something the code below (you can, of course, include your own dependencies)

...
...
...
"require": {
	...
	...
	...
	"meido/form": "1.0.*"
},
...
...
...

Laravel Side

add the following code to the providers section of the app/config/app.php file

'Meido\Form\Providers\FormServiceProvider',

so that it'll look something like the following

'providers' => array(

	...
	...
	...
	'Meido\Form\Providers\FormServiceProvider',

),

and add the following code to the aliases section of the app/config/app.php file

'Form' => 'Meido\Form\Facades\Form',

so that it'll look something like the following

'aliases' => array(

	...
	...
	...
	'Form'       => 'Meido\Form\Facades\Form',
	
),

after that, run composer install and start hacking on that beast.

Changelog

1.0.1

  • updated readme
  • updated illuminate component to stable version

1.0.0

  • tagged for stable release

Things to note

  • Custom Form macro are not supported.

About

A port of Laravel 3' Form class

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages