number_format($jbHelper30->OverallTax(), 2, '.', ','), '60days' => number_format($jbHelper60->OverallTax(), 2, '.', ','), '90days' => number_format($jbHelper90->OverallTax(), 2, '.', ','), ]; return view('jumpbridges.all')->with('data', $data); } /** * Displays overall jump bridge usage based corporation data */ public function displayCorpUsage() { return view('jumpbridges.corp.select'); } public function ajaxCorpUsage() { //Get the statistics for overall usage by corps and send back to webpage via ajax return response()->json(array('data' => $data), 200); } /** * Displays jump bridge usage based on structure */ public function displayStructureUsage() { return view('jumpbridges.structure.select'); } public function ajaxStructureUsage() { //Get the statistics for overall usage by structure and send back to the webpage via ajax return response()->json(array('data' => $data), 200); } }