We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68ad733 commit d231aa4Copy full SHA for d231aa4
app/Settings/GeneralSettings.php
@@ -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