laporanDebitureService = app(LaporanDebitureService::class); } /** * Display a listing of the resource. */ public function index() { $debiture = Debiture::all(); return view('lpj::laporan-debiture.index', compact('debiture')); } public function dataTableForDebiture(Request $request) { return $this->laporanDebitureService->dataForDatatables($request); } }