Seo form Component

 

Display seo form in the back office

<x-administrable::seoform :model="$model" />

The model must be an eloquent model and use SeoableTrait.

To fill automatically og:url tag, you can add this function in the model

public function getFrontRoute() :string
{
   return route('routename');
}

Display seo tags in the front office

<x-administrable::seotags :model="$model" />

In case, you want to generate tags on the fly

<x-administrable::seotags
    :force="true"
    title="My title"
    description="My description"
    keywords="key1, key2, key3"
    image="https://aswebagency.com/img/logo.png"
/>