PHPackages                             puzbie/meta - 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. puzbie/meta

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

puzbie/meta
===========

Meta Tag Manager, with hooks for Laravel 5

v1.0.0(10y ago)144MITPHPPHP &gt;=5.4.0

Since Jun 12Pushed 10y ago1 watchersCompare

[ Source](https://github.com/Puzbie/meta)[ Packagist](https://packagist.org/packages/puzbie/meta)[ RSS](/packages/puzbie-meta/feed)WikiDiscussions master Synced 1mo ago

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

Meta Tag Manager with Laravel 5 Hooks
=====================================

[](#meta-tag-manager-with-laravel-5-hooks)

Installation
============

[](#installation)

Step 1: Composer
----------------

[](#step-1-composer)

Add the package to your `composer.json`:

```
{
    "require": {
        "puzbie/meta": "^1.0"
    }
}

```

Step 2: Configuration
---------------------

[](#step-2-configuration)

Add the following to your `config/app.php` in the `providers` array:

```
'Puzbie\Meta\MetaServiceProvider',

```

You can also optionally add the following to the `aliases` array:

```
'Meta' => 'Puzbie\Meta\MetaFacade',

```

Usage
=====

[](#usage)

Basic Suggested Usage:

Use middleware to assign your default meta tags for all pages:

```
