spotonlive/laravel-google-ads

View on GitHub
src/LaravelGoogleAds/helpers.php

Summary

Maintainability
A
0 mins
Test Coverage
<?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);
    }
}