diff --git a/app/Http/Controllers/SRP/SRPController.php b/app/Http/Controllers/SRP/SRPController.php index 3260996d6..bfa6db6fe 100644 --- a/app/Http/Controllers/SRP/SRPController.php +++ b/app/Http/Controllers/SRP/SRPController.php @@ -35,7 +35,7 @@ class SRPController extends Controller ]); //See if the FC Name ties to a user on the services site - $fcId = User::where(['name' => $request->fc])->get(['character_id']); + $fcId = User::where(['name' => $request->FC])->get(['character_id']); dd($fcId); //Take the loss value and remove ' ISK' from it. Convert the string to a number $lossValue = str_replace(' ISK', '', $request->LossValue);