diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php index 7fbf6125..e24b5d43 100644 --- a/app/Http/Controllers/ProfileController.php +++ b/app/Http/Controllers/ProfileController.php @@ -23,6 +23,7 @@ class ProfileController extends Controller { return view('profile.index')->with([ 'user' => Auth::user(), + 'credits_reward_after_verify_discord' => Configuration::getValueByKey('CREDITS_REWARD_AFTER_VERIFY_DISCORD'), 'discord_verify_command' => Configuration::getValueByKey('DISCORD_VERIFY_COMMAND') ]); } diff --git a/resources/views/profile/index.blade.php b/resources/views/profile/index.blade.php index 783b20ec..89637997 100644 --- a/resources/views/profile/index.blade.php +++ b/resources/views/profile/index.blade.php @@ -159,7 +159,7 @@ @if(is_null(Auth::user()->discordUser))
-

By verifying your discord account, you receive an extra 375 credits and the Verified role!

+

By verifying your discord account, you receive an extra {{$credits_reward_after_verify_discord}} credits and the Verified role!