protonemedia/laravel-splade

Missing og:description

meetwithchuks opened this issue · 1 comments

  • Laravel Version: 10.20.0
  • PHP Version: 8.2.12
  • Splade JS Version (npm): 1.4.16
  • Splade PHP Version (composer): 1.4.16

Description:

og:description is not available.
Can have something like: SEO::openGraphDescription('This is the home page of my application'); ?

ProtoneMedia\Splade\Head is macroable, so you could add your custom method:

Head::macro('openGraphDescription', function($value) {
    $this->metaByProperty('og:description', $value);
});