Introduces a new feature to view a list of users who have joined within the last 7 days.
Added a new route (users/recent) and corresponding controller method (getRecentUsers) to fetch and display users who recently joined.
In view added a "Recently Joined" button in the admin area, which highlights the number of users who joined recently and navigates to the new view.
Created a new Blade template to display the recent users, including account creation date.
Introduces a new feature to view a list of users who have joined within the last 7 days.
Added a new route (users/recent) and corresponding controller method (getRecentUsers) to fetch and display users who recently joined. In view added a "Recently Joined" button in the admin area, which highlights the number of users who joined recently and navigates to the new view. Created a new Blade template to display the recent users, including account creation date.
Resolves #691