@@ -56,30 +56,80 @@ return [
5656 | Default Description
5757 |--------------------------------------------------------------------------
5858 |
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" >
6161 |
6262 */
6363 'description' => null,
6464
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+
6585 /*
6686 |--------------------------------------------------------------------------
6787 | Default Keywords
6888 |--------------------------------------------------------------------------
6989 |
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
7292 |
7393 */
7494 'keywords' => null,
7595
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+
76126 /*
77127 |--------------------------------------------------------------------------
78128 | Default Image path
79129 |--------------------------------------------------------------------------
80130 |
81131 | 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"
83133 |
84134 */
85135 'image' => null,
@@ -89,19 +139,19 @@ return [
89139 | Default Robots
90140 |--------------------------------------------------------------------------
91141 |
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
94144 |
95145 */
96146 'robots' => 'max-snippet:-1,max-image-preview:large,max-video-preview:-1',
97147
98148 /*
99149 |--------------------------------------------------------------------------
100- | Default Sitemap Path
150+ | Default Sitemap path
101151 |--------------------------------------------------------------------------
102152 |
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"
105155 |
106156 */
107157 'sitemap' => null,
@@ -116,8 +166,8 @@ return [
116166 | Default Site Name
117167 |--------------------------------------------------------------------------
118168 |
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.
121171 |
122172 */
123173 'site_name' => null,
@@ -127,8 +177,8 @@ return [
127177 | Default Determiner
128178 |--------------------------------------------------------------------------
129179 |
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
132182 |
133183 */
134184 'determiner' => '',
@@ -140,10 +190,10 @@ return [
140190 'twitter' => [
141191 /*
142192 |--------------------------------------------------------------------------
143- | Default Twitter Username
193+ | Default Twitter username
144194 |--------------------------------------------------------------------------
145195 |
146- | This is the default value for <meta name =" twitter:site" >.
196+ | This is the default value used for <meta name =" twitter:site" />
147197 | Example: @X
148198 |
149199 */
@@ -156,11 +206,11 @@ return [
156206 'schema' => [
157207 /*
158208 |--------------------------------------------------------------------------
159- | Default WebPage Schema
209+ | Default WebPage schema
160210 |--------------------------------------------------------------------------
161211 |
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
164214 |
165215 */
166216 'webpage' => [],
0 commit comments