From 8f2036eecca21d7dcad5c77f2c97c9d5eab90b60 Mon Sep 17 00:00:00 2001 From: Christopher Mancuso Date: Thu, 24 Jun 2021 21:26:42 +0900 Subject: [PATCH] structure helper --- app/Library/Helpers/StructureHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Library/Helpers/StructureHelper.php b/app/Library/Helpers/StructureHelper.php index c96d44da4..be2754a68 100644 --- a/app/Library/Helpers/StructureHelper.php +++ b/app/Library/Helpers/StructureHelper.php @@ -99,7 +99,7 @@ class StructureHelper { * Search for a structure in our own database, otherwise pull it from esi. */ public function GetStructureInfo($structureId) { - $info = Struture::where([ + $info = Structure::where([ 'structure_id' => $structureId, ])->first();