26 lines
418 B
PHP
26 lines
418 B
PHP
<?php
|
|
|
|
namespace App\Settings;
|
|
|
|
use Spatie\LaravelSettings\Settings;
|
|
|
|
class SocialSettings extends Settings
|
|
{
|
|
public ?string $facebook = null;
|
|
|
|
public ?string $instagram = null;
|
|
|
|
public ?string $youtube = null;
|
|
|
|
public ?string $tiktok = null;
|
|
|
|
public ?string $whatsapp = null;
|
|
|
|
public ?string $telegram = null;
|
|
|
|
public static function group(): string
|
|
{
|
|
return 'social';
|
|
}
|
|
}
|