taxRateRepo = $taxRateRepo; $this->datatableService = $datatableService; } protected function getRepo() { return $this->taxRateRepo; } public function getDatatable($accountId) { $datatable = new TaxRateDatatable(false); $query = $this->taxRateRepo->find($accountId); return $this->datatableService->createDatatable($datatable, $query); } }