feat: Add admin dashboard with statistics cards

This commit is contained in:
2026-03-27 13:09:43 -07:00
parent 3725738420
commit c5f6b2f6b3
3 changed files with 178 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# frozen_string_literal: true
module EuchreCamp
module Views
module Admin
class Index < EuchreCamp::View
expose :total_players
expose :active_tournaments
expose :completed_tournaments
expose :recent_matches
end
end
end
end