images/src/functions.php

15 lines
283 B
PHP
Raw Normal View History

2017-10-03 17:05:46 +02:00
<?php
if (!function_exists('config_path')) {
/**
* Get the configuration path.
*
* @param string $path
* @return string
*/
function config_path($path = '')
{
return app()->basePath() . '/config' . ($path ? '/' . $path : $path);
}
}