Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinGab committed Sep 13, 2024
1 parent 5c3b239 commit 3193a1c
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 21 deletions.
88 changes: 69 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,30 +56,80 @@ return [
| Default Description
|--------------------------------------------------------------------------
|
| This is the default value used for <meta name="description">, <meta property="og:description">,
| <meta name="twitter:description">
| This is the default value used for <meta name="description">,
| <meta property="og:description">, <meta name="twitter:description">
|
*/
'description' => null,

/*
|--------------------------------------------------------------------------
| Default Author
|--------------------------------------------------------------------------
|
| This is the default value used for <meta name="author">
|
*/
'author' => null,

/*
|--------------------------------------------------------------------------
| Default Generator
|--------------------------------------------------------------------------
|
| This is the default value used for <meta name="generator">
|
*/
'generator' => null,

/*
|--------------------------------------------------------------------------
| Default Keywords
|--------------------------------------------------------------------------
|
| This is the default value used for <meta name="keywords">.
| Supports string or array of strings.
| This is the default value used for <meta name="keywords">
| Types supported: string or array of strings
|
*/
'keywords' => null,

/*
|--------------------------------------------------------------------------
| Default Referrer
|--------------------------------------------------------------------------
|
| This is the default value used for <meta name="referrer">
|
*/
'referrer' => null,

/*
|--------------------------------------------------------------------------
| Default Theme color
|--------------------------------------------------------------------------
|
| This is the default value used for <meta name="theme-color">
|
*/
'theme-color' => null,

/*
|--------------------------------------------------------------------------
| Default Color Scheme
|--------------------------------------------------------------------------
|
| This is the default value used for <meta name="color-scheme">
|
*/
'color-scheme' => null,

/*
|--------------------------------------------------------------------------
| Default Image path
|--------------------------------------------------------------------------
|
| This is the default value used for <meta property="og:image">, <meta name="twitter:image">
| You can use a relative path (e.g., "/opengraph.png") or a full URL (e.g., "https://example.com/opengraph.png")
| You can use relative path like "/opengraph.png" or url like "https://example.com/opengraph.png"
|
*/
'image' => null,
Expand All @@ -89,19 +139,19 @@ return [
| Default Robots
|--------------------------------------------------------------------------
|
| This is the default value for the <meta name="robots"> tag.
| Refer to Google’s documentation: https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag?hl=en
| This is the default value used for <meta name="robots">
| See Google documentation here: https://developers.google.com/search/docs/crawling-indexing/robots-meta-tag?hl=fr#directives
|
*/
'robots' => 'max-snippet:-1,max-image-preview:large,max-video-preview:-1',

/*
|--------------------------------------------------------------------------
| Default Sitemap Path
| Default Sitemap path
|--------------------------------------------------------------------------
|
| This is the default value for the <link rel="sitemap"> tag.
| You can use a relative path (e.g., "/sitemap.xml") or a full URL (e.g., "https://example.com/sitemap.xml")
| This is the default value used for <link rel="sitemap">
| You can use relative path like "/sitemap.xml" or url like "https://example.com/sitemap.xml"
|
*/
'sitemap' => null,
Expand All @@ -116,8 +166,8 @@ return [
| Default Site Name
|--------------------------------------------------------------------------
|
| This is the default value for <meta property="og:site_name">.
| If null, config('app.name') will be used.
| This is the default value used for <meta property="og:site_name" />
| If null: config('app.name') is used.
|
*/
'site_name' => null,
Expand All @@ -127,8 +177,8 @@ return [
| Default Determiner
|--------------------------------------------------------------------------
|
| This is the default value for <meta property="og:determiner">.
| Possible values: a, an, the, "", auto
| This is the default value used for <meta property="og:determiner" />
| Possible values are: a, an, the, "", auto
|
*/
'determiner' => '',
Expand All @@ -140,10 +190,10 @@ return [
'twitter' => [
/*
|--------------------------------------------------------------------------
| Default Twitter Username
| Default Twitter username
|--------------------------------------------------------------------------
|
| This is the default value for <meta name="twitter:site">.
| This is the default value used for <meta name="twitter:site" />
| Example: @X
|
*/
Expand All @@ -156,11 +206,11 @@ return [
'schema' => [
/*
|--------------------------------------------------------------------------
| Default WebPage Schema
| Default WebPage schema
|--------------------------------------------------------------------------
|
| This is the default value for the schema.org WebPage.
| For available properties, refer to https://schema.org/WebPage.
| This is the default value used for the schema WebPage
| @see https://schema.org/WebPage for all available properties
|
*/
'webpage' => [],
Expand Down
5 changes: 3 additions & 2 deletions config/seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
| Default Description
|--------------------------------------------------------------------------
|
| This is the default value used for <meta name="description">, <meta property="og:description">, <meta name="twitter:description">
| This is the default value used for <meta name="description">,
| <meta property="og:description">, <meta name="twitter:description">
|
*/
'description' => null,
Expand Down Expand Up @@ -49,7 +50,7 @@
|--------------------------------------------------------------------------
|
| This is the default value used for <meta name="keywords">
| Type supported: string or array of strings
| Types supported: string or array of strings
|
*/
'keywords' => null,
Expand Down

0 comments on commit 3193a1c

Please sign in to comment.