testing new functions

This commit is contained in:
2021-06-03 00:13:05 +09:00
parent 23739baa7c
commit 8fb4b979c3

View File

@@ -40,10 +40,12 @@ class MiningTaxesAdminController extends Controller
*/ */
public function displayMiningOperationForm() { public function displayMiningOperationForm() {
//Declare variables //Declare variables
$config = config('esi');
$lookup = new LookupHelper; $lookup = new LookupHelper;
$sHelper = new StructureHelper; $sHelper = new StructureHelper($config['primary'], $config['corporation']);
$structures = new Collection; $structures = new Collection;
//Get all of the structures //Get all of the structures
$athanors = $sHelper->GetStructuresByType('Athanor'); $athanors = $sHelper->GetStructuresByType('Athanor');
$tataras = $sHelper->GetStructuresByType('Tatara'); $tataras = $sHelper->GetStructuresByType('Tatara');