first
This commit is contained in:
33
app/Settings/SiteSocialSettings.php
Normal file
33
app/Settings/SiteSocialSettings.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace App\Settings;
|
||||
|
||||
use Spatie\LaravelSettings\Settings;
|
||||
|
||||
class SiteSocialSettings extends Settings
|
||||
{
|
||||
public ?string $facebook_url;
|
||||
|
||||
public ?string $twitter_url;
|
||||
|
||||
public ?string $instagram_url;
|
||||
|
||||
public ?string $linkedin_url;
|
||||
|
||||
public ?string $youtube_url;
|
||||
|
||||
public ?string $pinterest_url;
|
||||
|
||||
public ?string $tiktok_url;
|
||||
|
||||
public bool $social_share_enabled;
|
||||
|
||||
public array $social_share_platforms;
|
||||
|
||||
public ?string $social_share_default_image;
|
||||
|
||||
public static function group(): string
|
||||
{
|
||||
return 'sites_social';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user