Under Construction, Laravel Package for Managing App Parameters/Settings.
This package is under development.
- This package should reduce the Configurability headache for developers, by providing a dedicated UI to edit and manage Parameters, and using it simply in the app as
param('parameter_name').
-
Build reusable admin interface for editing and adding Parameters. The interface should be completely customizable.
-
Parameters can be used in the app as
param('parameter_name'). -
each param has a
typeshould be casted to it, and the editor corresponds to this type. e.g:booleantype should be ainput[type=checkbox]andparam('some_boolean_parameter')should returntrueorfalse. -
....