structure controller
This commit is contained in:
@@ -72,8 +72,8 @@ class StructureController extends Controller
|
|||||||
/**
|
/**
|
||||||
* Calculate the final taxes and send to display
|
* Calculate the final taxes and send to display
|
||||||
*/
|
*/
|
||||||
$tax = CorpStructure::where(['corporation_id' => $corporation, 'structure_type' => 'Citadel'])->get(['tax']);
|
$taxes = CorpStructure::where(['corporation_id' => $corporation, 'structure_type' => 'Citadel'])->get(['tax']);
|
||||||
$rTax = CorpStructure::where(['corporation_id' => $corporation, 'structure_type' => 'Refinery'])->avg('tax');
|
$rTaxes = CorpStructure::where(['corporation_id' => $corporation, 'structure_type' => 'Refinery'])->get(['tax']);
|
||||||
dd($tax);
|
dd($tax);
|
||||||
|
|
||||||
$monthTaxesMarket = $tempMonthTaxesMarket - $marketFuelCost;
|
$monthTaxesMarket = $tempMonthTaxesMarket - $marketFuelCost;
|
||||||
|
|||||||
Reference in New Issue
Block a user