creditRepo = $creditRepo; $this->datatableService = $datatableService; } /** * @return CreditRepository */ protected function getRepo() { return $this->creditRepo; } /** * @param $data * @return mixed|null */ public function save($data) { return $this->creditRepo->save($data); } /** * @param $clientPublicId * @param $search * @return \Illuminate\Http\JsonResponse */ public function getDatatable($clientPublicId, $search) { // we don't support bulk edit and hide the client on the individual client page $datatable = new CreditDatatable( ! $clientPublicId, $clientPublicId); $query = $this->creditRepo->find($clientPublicId, $search); if(!Utils::hasPermission('view_all')){ $query->where('credits.user_id', '=', Auth::user()->id); } return $this->datatableService->createDatatable($datatable, $query); } }