Sometimes you may need to get and set configuration options at runtime. For this you'll use the Config class, which utilizes Laravel's "dot" syntax for accessing configuration files and items.
$value = Config::get('application.url');
$value = Config::get('application.timezone', 'UTC');
$options = Config::get('database');
Config::set('cache.driver', 'apc');