user()->company->credits()->paginate(10); return $this->render('credits.index', [ 'credits' => $credits, ]); } public function show(ShowCreditRequest $request, Credit $credit) { return $this->render('credits.show', [ 'credit' => $credit, ]); } }