diff --git a/routes/web.php b/routes/web.php
index 1f404211..d1ad6f9d 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -24,7 +24,7 @@ Route::get('/old-invoices', function(){
});
echo "
Total pending invoices:".count($bookings)."
";
foreach ($months as $month => $bookings) {
- echo "".$month."
";
+ echo "".$month."(".count($bookings).")
";
foreach ($bookings as $booking) {
echo "".$booking->id." date: ".$booking->created_at."
";
}