A production-ready multi-tenant blogging platform that plugs into your existing website with direct login links, signed application cookies, and tenant-safe APIs. Central Blogs gives teams a full publishing workflow with structured content, role-based administration, moderation, analytics, and tenant-level branding while keeping integration simple for developers.
Recent improvements shipped across the public experience, Application Admin, and Super Admin dashboards.
Blogs now support multiple tags with improved filtering, cleaner display, and better content discovery across listing and detail pages.
Related posts are now ranked by shared tags first, then enriched with same-category posts for stronger relevance.
Navigation groups were reorganized, counters were added to key menu items, and dashboard widgets now include Authors and Tags visibility.
We provide a comprehensive blogging ecosystem that goes beyond simple content creation. Our platform combines advanced security, tenant-ready infrastructure, accurate engagement tracking, and powerful admin tooling to deliver enterprise-grade blogging capabilities for businesses of all sizes.
Connect each tenant to its own login page and rely on first-party session auth when a user is signed in. Central Blogs no longer depends on bridge callbacks, signed cookie handoff, or auto-redirect auth.
Visitors can browse content without forced registration. Authentication is required only when they choose to engage, such as likes and comments.
Views are counted uniquely: once per logged-in user (lifetime) and once per visitor (resets every 7 days via cookies).
Like actions are restricted to logged-in users only, ensuring that every reaction represents a genuine, verifiable user.
Commenting requires authentication. This promotes higher quality discussions and prevents anonymous spam.
Customize each tenant with its own logo, brand colors, main site URL, and login flow to keep the blog experience aligned with your product identity.
Launch new blog tenants programmatically with built-in idempotency, audit logging, secure admin auto-login links, and replay-safe request handling.
Verify ownership, create tenants, and manage SSL certificate status from a centralized workflow designed for production-ready domain onboarding.
Help readers find the right content faster with search, category filters, tag filters, and smarter related blog suggestions.
Built-in backend pages give application admins tenant-scoped control while super admins keep global visibility across applications, engagement metrics, and operational activity.
Create polished articles with rich text editing, image uploads, SEO-friendly slugs, featured images, categories, tags, authors, and draft or published states.
Publish and manage content in multiple languages with locale-aware URLs, translatable slugs, RTL layout support, and a database-driven language registry.
Users can react to articles with Love, Neutral, or Dislike. Each reaction type is tracked separately per user, giving writers precise sentiment data beyond simple like counts.
Schedule articles to publish automatically at a future date and time. Content is queued and goes live without manual intervention when the scheduled time arrives.
Automatic comment filtering detects inappropriate content using a configurable word list. Supports auto-approve or manual review mode, keeping community quality high without extra overhead.
Per-tenant XML sitemaps are generated automatically as content changes and served with cache-backed delivery. Keeps your blog search-engine friendly out of the box.
When a blog’s slug changes, the old URL is preserved in history and automatically redirected (301) to the new location. Published links never break.
Per-tenant weekly view stats are tracked and displayed in the admin dashboard, giving application owners a clear picture of audience growth and content performance trends.
Built for maximum compatibility across modern web stacks. Whether your website runs on Laravel, WordPress, Node.js, Django, or any custom framework, Central Blogs integrates cleanly through signed APIs, direct login links, and optional shared identity cookies.
public function openTenantBlog(Request $request)
{
// 1. Send visitors to the tenant login page
if (!Auth::check()) {
return redirect($tenant->login_url ?? $tenant->main_site);
}
// 2. An authenticated session can proceed directly
return redirect($tenant->main_site);
}
Experience content management reimagined with our intuitive dashboard powered by Filament PHP. Designed for content creators, editors, and administrators who demand both power and simplicity.