32 lines
534 B
PHP
32 lines
534 B
PHP
<?php
|
|
|
|
namespace App\Settings;
|
|
|
|
use Spatie\LaravelSettings\Settings;
|
|
|
|
class SeoSettings extends Settings
|
|
{
|
|
public string $meta_description;
|
|
|
|
public string $meta_keywords;
|
|
|
|
public string $meta_author;
|
|
|
|
public ?string $og_image = null;
|
|
|
|
public ?string $og_title = null;
|
|
|
|
public ?string $og_description = null;
|
|
|
|
public ?string $og_type = null;
|
|
|
|
public ?string $twitter_card = null;
|
|
|
|
public ?string $canonical_url = null;
|
|
|
|
public static function group(): string
|
|
{
|
|
return 'seo';
|
|
}
|
|
}
|