diff --git a/flexiapi/.env.example b/flexiapi/.env.example index 0876614..c8917a3 100644 --- a/flexiapi/.env.example +++ b/flexiapi/.env.example @@ -52,6 +52,7 @@ INTERCOM_FEATURES=false # Toggle to enable/disable the intercom related features TERMS_OF_USE_URL= # A URL pointing to the Terms of Use PRIVACY_POLICY_URL= # A URL pointing to the Privacy Policy +APP_PROJECT_URL= # A URL pointing to the project information page LOG_CHANNEL=stack @@ -107,4 +108,4 @@ OVH_APP_SENDER= # Google reCaptcha v2 parameters NOCAPTCHA_SECRET=secret-key -NOCAPTCHA_SITEKEY=site-key \ No newline at end of file +NOCAPTCHA_SITEKEY=site-key diff --git a/flexiapi/config/app.php b/flexiapi/config/app.php index cfbf626..4eff0b5 100644 --- a/flexiapi/config/app.php +++ b/flexiapi/config/app.php @@ -13,9 +13,10 @@ return [ | */ - 'name' => env('APP_NAME', 'Laravel'), + 'name' => env('APP_NAME', 'Account Manager'), 'sip_domain' => env('APP_SIP_DOMAIN', 'sip.domain.com'), + 'project_url' => env('APP_PROJECT_URL', ''), 'terms_of_use_url' => env('TERMS_OF_USE_URL', ''), 'privacy_policy_url' => env('PRIVACY_POLICY_URL', ''), diff --git a/flexiapi/resources/views/about.blade.php b/flexiapi/resources/views/about.blade.php index 12031cc..2d22a50 100644 --- a/flexiapi/resources/views/about.blade.php +++ b/flexiapi/resources/views/about.blade.php @@ -6,7 +6,9 @@