PHPackages                             misaf/vendra-blog - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. misaf/vendra-blog

ActiveVendra-module

misaf/vendra-blog
=================

10[4 issues](https://github.com/misaf/vendra-blog/issues)PHPCI failing

Since Feb 26Pushed 2mo agoCompare

[ Source](https://github.com/misaf/vendra-blog)[ Packagist](https://packagist.org/packages/misaf/vendra-blog)[ RSS](/packages/misaf-vendra-blog/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Vendra Blog
===========

[](#vendra-blog)

Tenant-aware blog management for Laravel + Filament.

Features
--------

[](#features)

- Blog post categories
- Blog posts
- Filament resources on the `admin` panel

Requirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 11 or 12
- Filament 4
- `misaf/vendra-tenant`
- `misaf/vendra-activity-log`

Installation
------------

[](#installation)

```
composer require misaf/vendra-blog
php artisan vendor:publish --tag=vendra-blog-migrations
php artisan migrate
```

Optional translations publish:

```
php artisan vendor:publish --tag=vendra-blog-translations
```

The service provider and Filament plugin are auto-registered.

Usage
-----

[](#usage)

Create a category:

```
use Misaf\VendraBlog\Models\BlogPostCategory;

$category = BlogPostCategory::query()->create([
    'name' => ['en' => 'Announcements'],
    'status' => true,
]);
```

Create a post:

```
use Misaf\VendraBlog\Models\BlogPost;

BlogPost::query()->create([
    'blog_post_category_id' => $category->id,
    'name' => ['en' => 'Welcome'],
    'status' => true,
]);
```

Filament
--------

[](#filament)

Resources are available in the `Blogs` cluster on the `admin` panel:

- Blog Post Categories
- Blog Posts

Testing
-------

[](#testing)

```
composer test
```

License
-------

[](#license)

MIT. See [LICENSE](LICENSE).

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance36

Infrequent updates — may be unmaintained

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity12

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/41fd7351d25e29dafa18068d0418eecf6bb47a7473aabe6bc674b4ca35e71805?d=identicon)[misaf](/maintainers/misaf)

---

Top Contributors

[![misaf](https://avatars.githubusercontent.com/u/8195685?v=4)](https://github.com/misaf "misaf (1 commits)")

### Embed Badge

![Health badge](/badges/misaf-vendra-blog/health.svg)

```
[![Health](https://phpackages.com/badges/misaf-vendra-blog/health.svg)](https://phpackages.com/packages/misaf-vendra-blog)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
