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

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

aman5537jains/seo-manager
=========================

to manage the seo tags

4.0(5y ago)098PHP

Since Sep 9Pushed 3y ago1 watchersCompare

[ Source](https://github.com/aman5537jains/seomanager)[ Packagist](https://packagist.org/packages/aman5537jains/seo-manager)[ RSS](/packages/aman5537jains-seo-manager/feed)WikiDiscussions master Synced yesterday

READMEChangelog (4)DependenciesVersions (5)Used By (0)

Laravel Seo Manager
===================

[](#laravel-seo-manager)

---

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 aman5537jains/seo-manager
```

### 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
        Aman\SeoManager\SeoManagerServiceProvider::class,
    ],
// file END ommited
```

### 3 - Configuration

[](#3---configuration)

#### Publish config

[](#publish-config)

In your terminal type

```
php artisan vendor:publish --provider="Aman\SeoManager\SeoManagerServiceProvider"
php artisam migrate
```

### 4 - Add Models, Excpet Paths amd other config in config\\seoconfig.php

[](#4---add-models-excpet-paths-amd-other-config-in-configseoconfigphp)

```
