fixed hardcoded credit value
This commit is contained in:
parent
e5d638ee5e
commit
f4d9754212
2 changed files with 2 additions and 1 deletions
|
@ -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')
|
||||
]);
|
||||
}
|
||||
|
|
|
@ -159,7 +159,7 @@
|
|||
@if(is_null(Auth::user()->discordUser))
|
||||
<div class="verify-discord">
|
||||
<div class="mb-3">
|
||||
<p>By verifying your discord account, you receive an extra <b><i class="fa fa-coins mx-1"></i>375</b> credits and the <span class="text-primary">Verified</span> role!</p>
|
||||
<p>By verifying your discord account, you receive an extra <b><i class="fa fa-coins mx-1"></i>{{$credits_reward_after_verify_discord}}</b> credits and the <span class="text-primary">Verified</span> role!</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue