Future<List<BlogPost>> getRecentBlogs({int limit = 5}) async { final response = await getAllBlogs(perPage: limit); return response.data; }