PHPackages                             bfg/admin-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. [Admin Panels](/categories/admin)
4. /
5. bfg/admin-seo

ActiveBfg-admin-extension[Admin Panels](/categories/admin)

bfg/admin-seo
=============

Admin controls for SEO data

0.0.1(2y ago)082MITPHPPHP ^8.0|^8.1

Since Jun 22Pushed 2y ago2 watchersCompare

[ Source](https://github.com/bfg-s/admin-seo)[ Packagist](https://packagist.org/packages/bfg/admin-seo)[ RSS](/packages/bfg-admin-seo/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (1)Versions (2)Used By (2)

[![Laravel Logo](https://camo.githubusercontent.com/b2febdc58121e626abd661da9b4a4c7575d78d2613627873316924a00d98e776/68747470733a2f2f776f6f642e7665736b6f642e636f6d2f696d616765732f6c6f676f2e706e67)](https://wood.veskod.com/documentation/admin-panel)

[![Total Downloads](https://camo.githubusercontent.com/63779787340f0925c53795d7edad4cf19d6937518591ec70e62c0886f1b4d442/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6266672f61646d696e2d73656f)](https://packagist.org/packages/bfg/admin-seo)[![Latest Stable Version](https://camo.githubusercontent.com/6b86e830cc021cf5b2938e760a680ef3b93796b646f1a851c66b5a96126d602c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6266672f61646d696e2d73656f)](https://packagist.org/packages/bfg/admin-seo)[![License](https://camo.githubusercontent.com/cebbb0fc87675bd136534a99bbb5d2cff4dc25720b0b22b0604efa13fa6e904d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6266672f61646d696e2d73656f)](https://packagist.org/packages/bfg/admin-seo)

Install
=======

[](#install)

```
composer require bfg/admin-seo

```

Admin install
=============

[](#admin-install)

```
php artisan admin:extension bfg/admin-seo --install

```

After successfully installing the extension, a new section called “SEO” will appear in the admin panel. Additionally, a new `Seoable` trait will be provided, designed to integrate with your models. To activate SEO functionality for a specific model, you need to connect the `Seoable` trait to it. This action will expand the ability to manage the model through the administrative panel by adding a new tab with settings. In this tab, you can easily add and configure meta tags for the corresponding model, thereby improving its SEO performance and providing higher visibility in search engines.

```
use Admin\Extend\AdminSeo\Traits\Addressed;
use Illuminate\Database\Eloquent\Model;

class Page extends Model
{
    use Addressed;

    ...
}
```

Introducing a new tab to the form interface in the admin panel is a key step to expand content management functionality. This process involves developing and integrating an additional user interface element that provides easier access to specialized settings or features. The new tab can be customized to provide administrators with deeper interaction with system data and settings, thereby improving the overall usability of the control panel and making administrative procedures more efficient. Creating such a tab requires careful planning and design to ensure it is intuitive and easy to use for end users.

```
...
public function matrix(Page $page, Card $card, Form $form, Tab $tab) : Page
{
    return $page->card(
        $card->form(
            $form->tabGeneral(
                ...
            ),
            $form->tabSeo() // SEO tab
        ),
        $card->footer_form(),
    );
}
...
```

Admin menu
==========

[](#admin-menu)

In the case where you need to change the location of the "SEO" menu item in the structure of the administrative panel of your application, there is a specialized method for achieving this goal. This method, called `bfg_admin_seo`, allows you to flexibly integrate the "SEO" menu item into any part of your site's management interface. Using this method, you get the opportunity to customize the layout of menu elements in accordance with the administration needs and navigation logic of your web application. Thus, `bfg_admin_seo` provides you with tools for optimizing the workspace of the administrative panel, thereby improving its usability and efficiency of working with the SEO settings of your site:

```
class Navigator extends NavigatorExtensionProvider implements ActionWorkExtensionInterface
{
    /**
     * @return void
     */
    public function handle() : void
    {
        $this->bfg_admin_seo(); // SEO menu item

        // OR

        $this->group('Seo group', 'seo_group', function (NavGroup $group) {
            $group->bfg_admin_seo(); // SEO menu item in group
        })->icon_thumbtack();

        $this->makeDefaults();

        $this->makeExtensions();
    }
}
```

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity39

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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

740d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/59b2d162a30938ac2c3c56340ebea07a6778a3e1c86cb70b5bc28b69a1c3f04d?d=identicon)[bfg](/maintainers/bfg)

---

Top Contributors

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

---

Tags

laravelextensionadminltebfgadmin-seo

### Embed Badge

![Health badge](/badges/bfg-admin-seo/health.svg)

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

###  Alternatives

[guanguans/dcat-login-captcha

Dcat admin login captcha. - Dcat admin 登录验证码。

42112.7k](/packages/guanguans-dcat-login-captcha)[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61114.7k26](/packages/slowlyo-owl-admin)

PHPackages © 2026

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