Package Data | |
---|---|
Maintainer Username: | jarnstedt |
Maintainer Contact: | joonas@xnetti.net (Joonas Järnstedt) |
Package Create Date: | 2014-06-05 |
Package Last Update: | 2014-12-10 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-11 15:15:58 |
Package Statistics | |
---|---|
Total Downloads: | 75 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 4 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Laravel 4 form builder with Twitter Bootstrap styling. Extends Laravels own form builder.
Add this to composer.json and run composer update
.
"require": {
"jarnstedt/former": "dev-master"
},
Add this to Laravel providers
array in app/config/app.php file.
'Jarnstedt\Former\FormerServiceProvider',
Add this to aliases
array.
'Former' => 'Jarnstedt\Former\FormerFacade'
Example form
// controller
$user = User::find(1);
$form = Former::make($user);
// view
{{ $form->open() }}
{{ $form->text('name', 'Your name.req', 'default value', array('class' => 'className')) }}
{{ $form->select('city', 'City', array('City1', 'City2')) }}
{{ $form->submit('Save') }}
{{ $form->close() }}