butschster / LaravelMetaTags

The most powerful and extendable tools for managing SEO Meta Tags in your Laravel project
MIT License
540 stars 50 forks source link

Added ability to add visibility condition for tag entities. #29

Closed butschster closed 3 years ago

butschster commented 3 years ago

issue #11

Example

Tag::meta([
    'name' => 'description',
    'content' => 'Another cool description'
])->visibleWhen(function () {
    return Request::ip() === '127.0.0.1';
});