(Update) CRUDDY PT.1 🚀

This commit is contained in:
HDVinnie
2019-10-22 14:29:58 -04:00
parent a3efd98e84
commit 9fc03ab492
156 changed files with 1304 additions and 1487 deletions
+2 -2
View File
@@ -369,7 +369,7 @@ class BonusController extends Controller
);
if ($dest == 'profile') {
return redirect()->route('profile', ['username' => $recipient->slug, 'id'=> $recipient->id])
return redirect()->route('users.show', ['username' => $recipient->username])
->withSuccess('Gift Sent');
}
@@ -389,7 +389,7 @@ class BonusController extends Controller
}
if ($dest == 'profile') {
return redirect()->route('profile', ['username' => $recipient->slug, 'id'=> $recipient->id])
return redirect()->route('users.show', ['username' => $recipient->username])
->withErrors('You Must Enter An Amount And Message!');
}