rtcustom/ravel is a Laravel package for cms package for laravel 4 powered with angularjs.
It currently has 0 GitHub stars and 6 downloads on Packagist (latest version 1).
Install it with composer require rtcustom/ravel.
Discover more Laravel packages by rtcustom
or browse all Laravel packages to compare alternatives.
Last updated


"require": {
"raftalks/ravel": "*"
}
php composer.phar update command
'providers' => array(
'Raftalks\Ravel\RavelServiceProvider',
)
php artisan ravel:install
php composer.phar update
php artisan ravel:update
'custom_fields' => array(
//'example'
//'post' => array(
// "{metakey}" => array('label'=>'{name}','type'=>'{text}', 'attr'=>array(), 'options'=>array())
// )
'post' => array(
'somefield' => array('label'=>'custom field','type'=>'input_checkbox'),
'custom_field3' => array('label'=>'custom field','type'=>'ng_datepicker'),
'custom_field2' => array('label'=>'custom field2','type'=>'select','options'=>array(1=>'test',2=>'two',3=>'three',4=>'four'))
),
'page' => array(),
'attachement' => array(),
),
Documentation will be updated soon