middleware('auth'); $this->middleware('role:Director'); } public function displayWallet() { $helper = new SeatHelper(); $helper->GetCorpJournal(98287666); } public function displayTaxes() { //Make the helper esi class $helper = new Esi(); //Set the carbon date for the first day of the month $start = Carbon::now()->startOfMonth(); $end = Carbon::now()->endOfMonth(); $totalTax = 0.00; //Get the character's corporation from esi $corporation = $helper->FindCorporationName(Auth::user()->character_id); $corpId = $helper->FindCorporationId(Auth::user()->character_id); //Get the taxes for the corporation $taxes = DB::table('CorpJournals') ->where(['corporation_id'=> $corpId, 'ref_type' => 46]) ->whereBetween($start, $end) ->get(); foreach($taxes as $tax) { $totalTax += $tax->amount; } return view('finances.taxes')->with('totalTax', $totalTax); } }