PHPackages                             codedor/filament-seo - 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. codedor/filament-seo

Abandoned → [wotz/filament-seo](/?search=wotz%2Ffilament-seo)Library[Utility &amp; Helpers](/categories/utility)

codedor/filament-seo
====================

Package to manage SEO tags for models and routes in Filament

v3.0.0(6mo ago)05.6k↓54.3%MITPHPPHP ^8.2CI passing

Since Aug 18Pushed 3w ago2 watchersCompare

[ Source](https://github.com/codedor/filament-seo)[ Packagist](https://packagist.org/packages/codedor/filament-seo)[ Docs](https://github.com/wotzebra/filament-seo)[ RSS](/packages/codedor-filament-seo/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (10)Dependencies (16)Versions (17)Used By (0)

Package to manage SEO tags for models and routes in Filament
============================================================

[](#package-to-manage-seo-tags-for-models-and-routes-in-filament)

The SEO package for Laravel and Filament is a tool that simplifies the management of Open Graph (OG) and meta tags for your Eloquent models and routes. With this package, you can effortlessly define and customize essential metadata such as titles, descriptions and images, optimizing how your content appears in search results and on social media platforms. Integrated with Filament, the package offers a user-friendly interface for easy configuration, empowering you to enhance your website's SEO capabilities and drive more organic traffic to your site.

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

[](#installation)

You can install the package via composer:

```
composer require wotz/filament-seo
```

You can publish and run the migrations with:

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

You can publish the config file with:

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

This is the contents of the published config file:

```
use Wotz\Seo\Tags\Meta;
use Wotz\Seo\Tags\OgUrl;
use Wotz\Seo\Tags\OpenGraph;
use Wotz\Seo\Tags\OpenGraphImage;

return [
    'models' => [
        'seo-route' => \Wotz\Seo\Models\SeoRoute::class,
    ],
    'default' => [
        'title_og' => [
            'type' => OpenGraph::class,
            'name' => 'title',
            'content' => config('app.name'),
        ],
        'title_meta' => [
            'type' => Meta::class,
            'name' => 'title',
            'content' => config('app.name'),
        ],
        'description_og' => [
            'type' => OpenGraph::class,
            'name' => 'description',
            'content' => '',
        ],
        'description_meta' => [
            'type' => Meta::class,
            'name' => 'description',
            'content' => '',
        ],
        'image_og' => [
            'type' => OpenGraphImage::class,
            'name' => 'image',
            'content' => '',
        ],
        'type_og' => [
            'type' => OpenGraph::class,
            'name' => 'type',
            'content' => 'website',
        ],
        'url_og' => [
            'type' => OgUrl::class,
            'name' => 'url',
            'content' => '',
        ],
    ],
];
```

Usage
-----

[](#usage)

```
// Filament
\Wotz\Seo\Filament\SeoCard::make();

// Front-end
@seo()
```

Documentation
-------------

[](#documentation)

For the full documentation, check [here](./docs/index.md).

Testing
-------

[](#testing)

```
vendor/bin/pest
```

Changelog
---------

[](#changelog)

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

Upgrading
---------

[](#upgrading)

Please see [UPGRADING](UPGRADING.md) for more information on how to upgrade to a new version.

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

[](#contributing)

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

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

[](#security-vulnerabilities)

If you discover any security-related issues, please email  instead of using the issue tracker.

License
-------

[](#license)

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

###  Health Score

48

—

FairBetter than 94% of packages

Maintenance81

Actively maintained with recent releases

Popularity21

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 56.7% 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 ~80 days

Recently: every ~167 days

Total

12

Last Release

209d ago

Major Versions

v0.3.2 → v1.0.02023-12-07

v1.0.2 → v2.0.02024-10-04

v2.1.0 → v3.0.02026-01-20

PHP version history (2 changes)v0.1.0PHP ^8.2

v2.0.0PHP ^8.2|^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/57cc19028ba009c60e4fec6a2516f878598b66a6e260cc06a5cf300f00913ba8?d=identicon)[jyrkidn](/maintainers/jyrkidn)

---

Top Contributors

[![jyrkidn](https://avatars.githubusercontent.com/u/2447042?v=4)](https://github.com/jyrkidn "jyrkidn (59 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (23 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (12 commits)")[![AngryMoustache](https://avatars.githubusercontent.com/u/20287748?v=4)](https://github.com/AngryMoustache "AngryMoustache (8 commits)")[![Copilot](https://avatars.githubusercontent.com/in/1143301?v=4)](https://github.com/Copilot "Copilot (1 commits)")[![thibautdeg](https://avatars.githubusercontent.com/u/71264420?v=4)](https://github.com/thibautdeg "thibautdeg (1 commits)")

---

Tags

laravelwho owns the zebrafilament-seo

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/codedor-filament-seo/health.svg)

```
[![Health](https://phpackages.com/badges/codedor-filament-seo/health.svg)](https://phpackages.com/packages/codedor-filament-seo)
```

###  Alternatives

[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3915.5k](/packages/rawilk-profile-filament-plugin)[finity-labs/fin-mail

A powerful email template manager and composer for Filament with dynamic token replacement, template versioning, and inline email sending.

316.8k2](/packages/finity-labs-fin-mail)[tapp/filament-form-builder

User facing form builder using Filament components

133.5k6](/packages/tapp-filament-form-builder)[wotz/filament-media-library

Media Library package for Filament

182.0k13](/packages/wotz-filament-media-library)

PHPackages © 2026

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