@@ -56,30 +56,80 @@ return [
56
56
| Default Description
57
57
|--------------------------------------------------------------------------
58
58
|
59
- | This is the default value used for <meta name =" description" >, < meta property = " og:description " >,
60
- | <meta name =" twitter:description" >
59
+ | This is the default value used for <meta name =" description" >,
60
+ | <meta property = " og:description " >, < meta name =" twitter:description" >
61
61
|
62
62
*/
63
63
'description' => null,
64
64
65
+ /*
66
+ |--------------------------------------------------------------------------
67
+ | Default Author
68
+ |--------------------------------------------------------------------------
69
+ |
70
+ | This is the default value used for <meta name =" author" >
71
+ |
72
+ */
73
+ 'author' => null,
74
+
75
+ /*
76
+ |--------------------------------------------------------------------------
77
+ | Default Generator
78
+ |--------------------------------------------------------------------------
79
+ |
80
+ | This is the default value used for <meta name =" generator" >
81
+ |
82
+ */
83
+ 'generator' => null,
84
+
65
85
/*
66
86
|--------------------------------------------------------------------------
67
87
| Default Keywords
68
88
|--------------------------------------------------------------------------
69
89
|
70
- | This is the default value used for <meta name =" keywords" >.
71
- | Supports string or array of strings.
90
+ | This is the default value used for <meta name =" keywords" >
91
+ | Types supported: string or array of strings
72
92
|
73
93
*/
74
94
'keywords' => null,
75
95
96
+ /*
97
+ |--------------------------------------------------------------------------
98
+ | Default Referrer
99
+ |--------------------------------------------------------------------------
100
+ |
101
+ | This is the default value used for <meta name =" referrer" >
102
+ |
103
+ */
104
+ 'referrer' => null,
105
+
106
+ /*
107
+ |--------------------------------------------------------------------------
108
+ | Default Theme color
109
+ |--------------------------------------------------------------------------
110
+ |
111
+ | This is the default value used for <meta name =" theme-color" >
112
+ |
113
+ */
114
+ 'theme-color' => null,
115
+
116
+ /*
117
+ |--------------------------------------------------------------------------
118
+ | Default Color Scheme
119
+ |--------------------------------------------------------------------------
120
+ |
121
+ | This is the default value used for <meta name =" color-scheme" >
122
+ |
123
+ */
124
+ 'color-scheme' => null,
125
+
76
126
/*
77
127
|--------------------------------------------------------------------------
78
128
| Default Image path
79
129
|--------------------------------------------------------------------------
80
130
|
81
131
| This is the default value used for <meta property =" og:image" >, <meta name =" twitter:image" >
82
- | You can use a relative path (e.g., "/opengraph.png") or a full URL (e.g., "https://example.com/opengraph.png")
132
+ | You can use relative path like "/opengraph.png" or url like "https://example.com/opengraph.png"
83
133
|
84
134
*/
85
135
'image' => null,
@@ -89,19 +139,19 @@ return [
89
139
| Default Robots
90
140
|--------------------------------------------------------------------------
91
141
|
92
- | This is the default value for the <meta name =" robots" > tag.
93
- | Refer to Google’s documentation: https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag?hl=en
142
+ | This is the default value used for <meta name =" robots" >
143
+ | See Google documentation here : https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag?hl=fr#directives
94
144
|
95
145
*/
96
146
'robots' => 'max-snippet:-1,max-image-preview:large,max-video-preview:-1',
97
147
98
148
/*
99
149
|--------------------------------------------------------------------------
100
- | Default Sitemap Path
150
+ | Default Sitemap path
101
151
|--------------------------------------------------------------------------
102
152
|
103
- | This is the default value for the <link rel =" sitemap" > tag.
104
- | You can use a relative path (e.g., "/sitemap.xml") or a full URL (e.g., "https://example.com/sitemap.xml")
153
+ | This is the default value used for <link rel =" sitemap" >
154
+ | You can use relative path like "/sitemap.xml" or url like "https://example.com/sitemap.xml"
105
155
|
106
156
*/
107
157
'sitemap' => null,
@@ -116,8 +166,8 @@ return [
116
166
| Default Site Name
117
167
|--------------------------------------------------------------------------
118
168
|
119
- | This is the default value for <meta property =" og:site_name" >.
120
- | If null, config('app.name') will be used.
169
+ | This is the default value used for <meta property =" og:site_name" />
170
+ | If null: config('app.name') is used.
121
171
|
122
172
*/
123
173
'site_name' => null,
@@ -127,8 +177,8 @@ return [
127
177
| Default Determiner
128
178
|--------------------------------------------------------------------------
129
179
|
130
- | This is the default value for <meta property =" og:determiner" >.
131
- | Possible values: a, an, the, "", auto
180
+ | This is the default value used for <meta property =" og:determiner" />
181
+ | Possible values are : a, an, the, "", auto
132
182
|
133
183
*/
134
184
'determiner' => '',
@@ -140,10 +190,10 @@ return [
140
190
'twitter' => [
141
191
/*
142
192
|--------------------------------------------------------------------------
143
- | Default Twitter Username
193
+ | Default Twitter username
144
194
|--------------------------------------------------------------------------
145
195
|
146
- | This is the default value for <meta name =" twitter:site" >.
196
+ | This is the default value used for <meta name =" twitter:site" />
147
197
| Example: @X
148
198
|
149
199
*/
@@ -156,11 +206,11 @@ return [
156
206
'schema' => [
157
207
/*
158
208
|--------------------------------------------------------------------------
159
- | Default WebPage Schema
209
+ | Default WebPage schema
160
210
|--------------------------------------------------------------------------
161
211
|
162
- | This is the default value for the schema.org WebPage.
163
- | For available properties, refer to https://schema.org/WebPage.
212
+ | This is the default value used for the schema WebPage
213
+ | @see https://schema.org/WebPage for all available properties
164
214
|
165
215
*/
166
216
'webpage' => [],
0 commit comments