PHPackages                             rectitude-open/filament-news - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. rectitude-open/filament-news

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

rectitude-open/filament-news
============================

Filament news plugin with categories, tags, and revisions.

v1.19.0(8mo ago)0498[4 PRs](https://github.com/rectitude-open/filament-news/pulls)1MITPHPPHP ^8.1

Since May 12Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/rectitude-open/filament-news)[ Packagist](https://packagist.org/packages/rectitude-open/filament-news)[ Docs](https://github.com/rectitude-open/filament-news)[ RSS](/packages/rectitude-open-filament-news/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (20)Versions (40)Used By (1)

[![Filament News Banner](./art/Filament%20News.png)](./art/Filament%20News.png)

Filament News
=============

[](#filament-news)

[![Do not use](https://camo.githubusercontent.com/fa423dc5d7db2e0ff4ad07b5f84ee76a84ededdbcc37f1f60c16507d8d064583/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f556e646572253230646576656c6f706d656e742d446f6e27742532307573652d726564)](https://camo.githubusercontent.com/fa423dc5d7db2e0ff4ad07b5f84ee76a84ededdbcc37f1f60c16507d8d064583/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f556e646572253230646576656c6f706d656e742d446f6e27742532307573652d726564)[![Tests](https://github.com/rectitude-open/filament-news/actions/workflows/run-tests.yml/badge.svg)](https://github.com/rectitude-open/filament-news/actions/workflows/run-tests.yml)[![PHPStan](https://camo.githubusercontent.com/2de44fa415e74513b3ab0978012f8b4bb8e37dafe58e2d27f779705b278f0373/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048505374616e2d6c6576656c253230352d627269676874677265656e)](https://phpstan.org/)[![Latest Version on Packagist](https://camo.githubusercontent.com/022cb3269ff257cc577ea870f5f0c03e88ba808afd806bb4726de8f882085d6f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7265637469747564652d6f70656e2f66696c616d656e742d6e6577732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/rectitude-open/filament-news)[![Total Downloads](https://camo.githubusercontent.com/40de8d498e62d99e491886819bb318a74896a5e2e5610b83b8d7a204c45cf026/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7265637469747564652d6f70656e2f66696c616d656e742d6e6577732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/rectitude-open/filament-news)[![PRs Welcome](https://camo.githubusercontent.com/25b3e6d0d42c98de74a98cbb4d149a1c09020cf6d1361993b72d7d5b8ffed363/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5052732d77656c636f6d652d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](https://github.com/rectitude-open/filament-news/pulls)

Filament News is a Filament plugin that provides a comprehensive news management interface for your application. It's designed to help you quickly set up a backend for managing news articles, complete with common features such as **categories, tags, featured images, summaries, weight, SEO optimization, and version tracking**. This package streamlines the process of integrating a robust news system into your Filament admin panel.

> **Note:** This plugin relies on several excellent Laravel/Filament plugins. Before installing Filament News, you must ensure that all the following dependencies are installed and properly configured in your project. [Filament Tree](https://github.com/solutionforest/filament-tree), [Filament Select Tree](https://github.com/CodeWithDennis/filament-select-tree), [Eloquent Sluggable](https://github.com/cviebrock/eloquent-sluggable), [Filament Spatie Tags Plugin](https://github.com/filamentphp/spatie-laravel-tags-plugin), [Filament Versionable](https://github.com/mansoorkhan96/filament-versionable), [Filament SEO](https://github.com/ralphjsmit/laravel-filament-seo), [Filament Curator](https://github.com/awcodes/filament-curator)

> **Important:** The category feature in this plugin depends on the Filament Tree plugin. You must configure the `order` field of Filament Tree to use `weight` for proper functionality.

This package is also a standalone part of a CMS project: [FilaPress](https://github.com/rectitude-open/filapress).

ResourcePageClusterMigrationModelConfigViewLocalization✅✅✅✅✅✅❌✅Installation
------------

[](#installation)

You can install the package via composer:

```
composer require rectitude-open/filament-news
```

You can publish and run the migrations with:

```
php artisan vendor:publish --tag="filament-news-migrations"
php artisan migrate
```

You can publish the config file with:

```
php artisan vendor:publish --tag="filament-news-config"
```

Optionally, you can publish the translations using

```
php artisan vendor:publish --tag="filament-news-translations"
```

This is the contents of the published config file:

```
return [
    'cluster' => [
        'navigation_sort' => 0,
        'navigation_icon' => 'heroicon-o-newspaper',
    ],
    'news' => [
        'navigation_sort' => 0,
        'navigation_icon' => 'heroicon-o-newspaper',
        'datetime_format' => 'Y-m-d H:i:s',
        'navigation_badge' => false,
        'model' => \RectitudeOpen\FilamentNews\Models\News::class,
        'filament_resource' => \RectitudeOpen\FilamentNews\Filament\Resources\NewsResource::class,
    ],
    'news_category' => [
        'model' => \RectitudeOpen\FilamentNews\Models\NewsCategory::class,
        'page' => \RectitudeOpen\FilamentNews\Filament\Pages\NewsCategory::class,
        'navigation_sort' => 2,
        'navigation_icon' => 'heroicon-o-rectangle-stack',
    ],
    'tag' => [
        'model' => \RectitudeOpen\FilamentNews\Models\Tag::class,
        'filament_resource' => \RectitudeOpen\FilamentNews\Filament\Resources\NewsTagResource::class,
        'navigation_sort' => 3,
        'navigation_icon' => 'heroicon-o-tag',
    ],

    'editor_component_class' => \Filament\Forms\Components\RichEditor::class,
];
```

Usage
-----

[](#usage)

The package provides a cluster page that allows you to view News in your Filament admin panel.

To use the cluster page provided by this package, you need to register it in your Panel Provider first.

```
namespace App\Providers\Filament;

use RectitudeOpen\FilamentNews\FilamentNewsPlugin;

class AdminPanelProvider extends PanelProvider
{
    public function panel(Panel $panel): Panel
    {
        return $panel
            ->plugins([
                FilamentNewsPlugin::make()
            ]);
    }
}
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Aspirant Zhang](https://github.com/aspirantzhang)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance78

Regular maintenance activity

Popularity15

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 73.4% 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.

###  Release Activity

Cadence

Every ~3 days

Recently: every ~15 days

Total

36

Last Release

240d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/06e113a1e04f4cde069f333882f90653a22ce080afa4ac21d1c3d95533b074d5?d=identicon)[aspirantzhang](/maintainers/aspirantzhang)

---

Top Contributors

[![aspirantzhang](https://avatars.githubusercontent.com/u/24559988?v=4)](https://github.com/aspirantzhang "aspirantzhang (116 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (39 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")

---

Tags

filament-pluginlaravelnewslaravel newsfilament-plugin

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/rectitude-open-filament-news/health.svg)

```
[![Health](https://phpackages.com/badges/rectitude-open-filament-news/health.svg)](https://phpackages.com/packages/rectitude-open-filament-news)
```

###  Alternatives

[bezhansalleh/filament-google-analytics

Google Analytics integration for FilamentPHP

205144.8k5](/packages/bezhansalleh-filament-google-analytics)[schmeits/filament-character-counter

This is a Filament character counter TextField and Textarea form field for Filament v4 and v5

33184.7k6](/packages/schmeits-filament-character-counter)[marcelweidum/filament-expiration-notice

Customize the livewire expiration notice

9169.0k4](/packages/marcelweidum-filament-expiration-notice)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)[jiten14/jitone-ai

jitone-ai is a powerful FilamentPHP plugin that integrates AI-powered features directly into your Filament forms.

213.1k](/packages/jiten14-jitone-ai)[wsmallnews/filament-nestedset

Filament nestedset tree builder powered by kalnoy/nestedset with Filament v4 and v5 support

163.0k8](/packages/wsmallnews-filament-nestedset)

PHPackages © 2026

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