Skip to content

Commit d231aa4

Browse files
Update dependencies
1 parent 68ad733 commit d231aa4

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

app/Settings/GeneralSettings.php

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?php
2+
3+
namespace App\Settings;
4+
5+
use Spatie\LaravelSettings\Settings;
6+
7+
class GeneralSettings extends Settings
8+
{
9+
public string $site_name;
10+
public string $site_email;
11+
public string $site_phone;
12+
public string $site_address;
13+
public string $site_country;
14+
public string $site_currency;
15+
public string $site_default_language;
16+
17+
// Social Media Links
18+
public ?string $facebook_url;
19+
public ?string $twitter_url;
20+
public ?string $github_url;
21+
public ?string $youtube_url;
22+
23+
// Footer Copyright
24+
public string $footer_copyright;
25+
26+
public static function group(): string
27+
{
28+
return 'general';
29+
}
30+
}

0 commit comments

Comments
 (0)