A port of Laravel 3's Form class. Made to work with Laravel 4.
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.*"
},
...
...
...
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.
- updated readme
- updated illuminate component to stable version
- tagged for stable release
- Custom Form macro are not supported.
