butschster / LaravelMetaTags

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

Added ability to use anonymous functions as tag attribute value #28

Closed butschster closed 4 years ago

butschster commented 4 years ago
new Tag('meta', [
    'name' => 'csrf-token',
    'content' => function () {
        return Session::token();
    }
])

fixed #19