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

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

seo/manager
===========

Seo Manager For Laravel

v0.0.1(8y ago)1292MITPHPPHP ~5.6|~7.0

Since May 4Pushed 8y agoCompare

[ Source](https://github.com/VaheSaroyan/seomanager)[ Packagist](https://packagist.org/packages/seo/manager)[ Docs](https://github.com/VaheSaroyan/seomanager)[ RSS](/packages/seo-manager/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (1)Dependencies (6)Versions (2)Used By (0)

Manager
=======

[](#manager)

[![Build Status](https://camo.githubusercontent.com/d90daa38075922d1e8ace2aa2c090ebac0443c875f3f9b3ea7d495b0dd4bfac6/68747470733a2f2f7472617669732d63692e6f72672f566168655361726f79616e2f73656f6d616e616765722e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/VaheSaroyan/seomanager.svg?branch=master)

> Statistics [![Latest Stable Version](https://camo.githubusercontent.com/aa6e6a191b3aa8c82ab603d7ba6f24521ed69794c03a2315ea18a7814d36a455/68747470733a2f2f706f7365722e707567782e6f72672f73656f2f6d616e616765722f762f737461626c65)](https://packagist.org/packages/seo/manager)[![Total Downloads](https://camo.githubusercontent.com/983e6a285f7fac67a4c0cbd998022389b9819a5f892b6582d85e1e739399b33c/68747470733a2f2f706f7365722e707567782e6f72672f73656f2f6d616e616765722f646f776e6c6f616473)](https://packagist.org/packages/seo/manager)[![License](https://camo.githubusercontent.com/f5ff3dad4a8829c6a5b98a340ce3a011adf64ffb56c692b01447bf127c7d89a8/68747470733a2f2f706f7365722e707567782e6f72672f73656f2f6d616e616765722f6c6963656e7365)](https://packagist.org/packages/seo/manager)[![Latest Unstable Version](https://camo.githubusercontent.com/63664e1e63497bd21d697efa9c9335ed2589b15117b556b50587b147db735b51/68747470733a2f2f706f7365722e707567782e6f72672f73656f2f6d616e616765722f762f756e737461626c65)](https://packagist.org/packages/seo/manager)[![Monthly Downloads](https://camo.githubusercontent.com/94cd2df5689d1263c1f1ef5782779d759fffbc0aa4623cd953948748daf80b13/68747470733a2f2f706f7365722e707567782e6f72672f73656f2f6d616e616765722f642f6d6f6e74686c79)](https://packagist.org/packages/seo/manager)[![Daily Downloads](https://camo.githubusercontent.com/9aaab54b4d73a3dc2bda07f285afeeb81e7645ef61de080bdeb1ef67d44d8f8c/68747470733a2f2f706f7365722e707567782e6f72672f73656f2f6d616e616765722f642f6461696c79)](https://packagist.org/packages/seo/manager)

Structure
---------

[](#structure)

```
src/
tests/
vendor/

```

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

[](#installation)

### 1 - Dependency

[](#1---dependency)

The first step is using composer to install the package and automatically update your `composer.json` file, you can do this by running:

```
composer require seo/manager
```

> **Note**: If you are using Laravel 5.5, the steps 2 and 3, for providers and aliases, are unnecessaries. SeoManager supports Laravel new [Package Discovery](https://laravel.com/docs/5.5/packages#package-discovery).

### 2 - Provider

[](#2---provider)

You need to update your application configuration in order to register the package so it can be loaded by Laravel, just update your `config/app.php` file adding the following code at the end of your `'providers'` section:

> `config/app.php`

```
// file START ommited
    'providers' => [
        // other providers ommited
        Seo\Manager\Providers\ManagerServiceProvider::class,
    ],
// file END ommited
```

### 3 - Facade

[](#3---facade)

> Facades are not supported in Lumen.

In order to use the `SeoManager` facade, you need to register it on the `config/app.php` file, you can do that the following way:

```
// file START ommited
    'aliases' => [
        // other Facades ommited

             'SeoManager'=>Seo\Manager\Facades\SeoManager::class,

                 ],
// file END ommited
```

### 4 Configuration

[](#4-configuration)

#### Publish config

[](#publish-config)

In your terminal type

```
php artisan vendor:publish
php artisan migrate
php artisan storage:link
```

In `seo_manager.php` configuration file you can determine the properties of the default values and some behaviors.

### Meta tags Generator

[](#meta-tags-generator)

With **SEOMeta** you can create meta tags to the `head`

- 1 add `{!! SEO::generate(true) !!}` to site `head`
- 2 add `{!! SeoManager::generateManager() !!}` to site `body` *you can be shut seo manager in admin permission*

### EX

[](#ex)

```
@if(Auth::user->hasRole() == 'admin')
{!! SeoManager::generateManager() !!}
@endif
```

- 3 usage in controller

```
use Seo\Manager\Facades\SeoManager;

class HomeController extends Controller
{
 public function index(Request $request)
    {
       SeoManager::seoManager($request,$keywords, $title, $description, $ogType, $image = null, $locale = null, $locales = null, $canonical = null);

       return view('home');
    }
}
```

Testing
-------

[](#testing)

```
$ composer test
```

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Vahe Saroyan](https://github.com/VaheSaroyan)

License
-------

[](#license)

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

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 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

2933d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/c2dd1980d18645cbaecf54d7fda7b8784a793541cc6865fb1b90068ea4f98888?d=identicon)[VaheSaroyan](/maintainers/VaheSaroyan)

---

Top Contributors

[![VaheSaroyan](https://avatars.githubusercontent.com/u/33878690?v=4)](https://github.com/VaheSaroyan "VaheSaroyan (15 commits)")

---

Tags

managertwitterlaravel5seoseomanageropengraphmeta-tagswebmasterlaravel56

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

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

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

###  Alternatives

[artesaos/seotools

SEO Tools for Laravel and Lumen

3.3k5.1M60](/packages/artesaos-seotools)[butschster/meta-tags

The most powerful and extendable tools for managing SEO Meta Tags in your Laravel project

628730.7k2](/packages/butschster-meta-tags)[arcanedev/seo-helper

SEO Helper is a framework agnostic package that provides tools &amp; helpers for SEO (Laravel supported).

332467.0k4](/packages/arcanedev-seo-helper)[honeystone/laravel-seo

SEO metadata and JSON-LD package for Laravel.

34744.1k](/packages/honeystone-laravel-seo)[chriskonnertz/open-graph

Class that assists in building Open Graph meta tags

117428.6k3](/packages/chriskonnertz-open-graph)[social-links/social-links

PHP library to generate share buttons

112338.6k2](/packages/social-links-social-links)

PHPackages © 2026

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