scoringGuideCacheService = $scoringGuideCacheService; $this->tabulationService = $tabulationService; $this->invoiceService = $invoiceService; } public function flashTest(Request $request) { $lines = $this->invoiceService->getLines(12); $totalFees = $this->invoiceService->getGrandTotal(12); return view('test', compact('lines','totalFees')); } }