protonemedia / laravel-splade

💫 The magic of Inertia.js with the simplicity of Blade 💫 - Splade provides a super easy way to build Single Page Applications (SPA) using standard Laravel Blade templates, and sparkle it to make it interactive. All without ever leaving Blade.
https://splade.dev
MIT License
1.47k stars 109 forks source link

Missing og:description #535

Closed meetwithchuks closed 6 months ago

meetwithchuks commented 10 months ago

Description:

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

pascalbaljet commented 6 months ago

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

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