@@ -35,7 +35,7 @@ class PracticeManagementController extends Controller
public function billingReport(Request $request)
{
- $rows = BillingReport::all();
+ $rows = BillingReport::paginate(100);
return view('app.practice-management.billing-report', compact('rows'));
}
@@ -76,7 +76,7 @@
</tbody>
</table>
<div>
-{{-- {{$bills->links()}}--}}
+ {{$rows->links()}}
</div>