From 6c220b5de5acacbc6fdea545e4a98b36806b6632 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 30 Jun 2019 01:37:16 -0500 Subject: [PATCH] srp form --- app/Http/Controllers/SRP/SRPController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);