pieter / form-component
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/pieter/form-component
Requires
- php: >=5.3.0
- illuminate/support: 4.0.x
This package is not auto-updated.
Last update: 2025-10-07 11:59:39 UTC
README
This form component just for practice
installing
for simple way, try using composer, add this on your composer.json file in require tag
"pieter/form-component": "dev-master"
and run from terminal
~/php composer.phar update "pieter/form-component"
after that, add this code on app/config/app.php
array(
'providers' => array (
other providers,
'Pieter\FormComponent\FormComponentServiceProvider',
),
'aliases' => array (
other aliases,
'CForm' => 'Pieter\FormComponent\Facades\CDate',
)
),
)
How to use
just call the cForm from [your-view].blade.php
{{ CForm::custom_year('tahun', array(2008, 2013)) }}
enjoy it !