From 81013aaeb0c62fc1af6a9719a8b0646421ac1c41 Mon Sep 17 00:00:00 2001 From: Edward Yang Date: Fri, 6 Jan 2023 18:43:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20meta=5Fkeyword=20=E4=B8=BA?= =?UTF-8?q?=20meta=5Fkeywords?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Admin/Database/Seeders/ProductSeeder.php | 2 +- beike/Admin/Services/CategoryService.php | 2 +- beike/Models/PageDescription.php | 2 +- beike/Models/ProductDescription.php | 2 +- beike/Shop/Http/Resources/PageDetail.php | 2 +- beike/Shop/Http/Resources/ProductDetail.php | 2 +- .../2021_12_26_111435_create_tables.php | 6 +- database/seeders/CategoriesSeeder.php | 64 +++++------ database/seeders/PagesSeeder.php | 16 +-- database/seeders/ProductsSeeder.php | 108 +++++++++--------- database/seeders/SettingsSeeder.php | 2 +- .../admin/views/pages/pages/form.blade.php | 2 +- .../views/pages/products/form/form.blade.php | 2 +- .../beike/admin/views/pages/setting.blade.php | 2 +- resources/lang/de/admin/setting.php | 2 +- resources/lang/en/admin/setting.php | 2 +- resources/lang/es/admin/setting.php | 2 +- resources/lang/fr/admin/setting.php | 2 +- resources/lang/it/admin/setting.php | 2 +- resources/lang/ja/admin/setting.php | 2 +- resources/lang/ru/admin/setting.php | 2 +- resources/lang/zh_cn/admin/setting.php | 2 +- resources/lang/zh_hk/admin/setting.php | 2 +- themes/default/layout/master.blade.php | 2 +- themes/default/pages/detail.blade.php | 2 +- 25 files changed, 118 insertions(+), 118 deletions(-) diff --git a/beike/Admin/Database/Seeders/ProductSeeder.php b/beike/Admin/Database/Seeders/ProductSeeder.php index c00d0305..c09de84c 100644 --- a/beike/Admin/Database/Seeders/ProductSeeder.php +++ b/beike/Admin/Database/Seeders/ProductSeeder.php @@ -34,7 +34,7 @@ class ProductSeeder extends Seeder 'content' => $faker->paragraphs(6, true), 'meta_title' => $faker->words(10, true), 'meta_description' => $faker->sentence(10), - 'meta_keyword' => $faker->words(10, true), + 'meta_keywords' => $faker->words(10, true), 'created_at' => $time, 'updated_at' => $time, ]; diff --git a/beike/Admin/Services/CategoryService.php b/beike/Admin/Services/CategoryService.php index 49b8fce1..91db2f1b 100644 --- a/beike/Admin/Services/CategoryService.php +++ b/beike/Admin/Services/CategoryService.php @@ -38,7 +38,7 @@ class CategoryService 'content' => $description['content'] ?? '', 'meta_title' => $description['meta_title'] ?? '', 'meta_description' => $description['meta_description'] ?? '', - 'meta_keyword' => $description['meta_keyword'] ?? '', + 'meta_keywords' => $description['meta_keywords'] ?? '', ]; } if ($isUpdating) { diff --git a/beike/Models/PageDescription.php b/beike/Models/PageDescription.php index e2a1e405..8da230e5 100644 --- a/beike/Models/PageDescription.php +++ b/beike/Models/PageDescription.php @@ -14,6 +14,6 @@ namespace Beike\Models; class PageDescription extends Base { protected $fillable = [ - 'page_id', 'locale', 'title', 'content', 'meta_title', 'meta_description', 'meta_keyword' + 'page_id', 'locale', 'title', 'content', 'meta_title', 'meta_description', 'meta_keywords' ]; } diff --git a/beike/Models/ProductDescription.php b/beike/Models/ProductDescription.php index 309e2019..78c6f341 100644 --- a/beike/Models/ProductDescription.php +++ b/beike/Models/ProductDescription.php @@ -8,5 +8,5 @@ class ProductDescription extends Base { use HasFactory; - protected $fillable = ['locale', 'name', 'content', 'meta_title', 'meta_description', 'meta_keyword']; + protected $fillable = ['locale', 'name', 'content', 'meta_title', 'meta_description', 'meta_keywords']; } diff --git a/beike/Shop/Http/Resources/PageDetail.php b/beike/Shop/Http/Resources/PageDetail.php index 0767c17a..ef17bcf2 100644 --- a/beike/Shop/Http/Resources/PageDetail.php +++ b/beike/Shop/Http/Resources/PageDetail.php @@ -32,7 +32,7 @@ class PageDetail extends JsonResource 'content' => $description->content, 'meta_title' => $description->meta_title, 'meta_description' => $description->meta_description, - 'meta_keyword' => $description->meta_keyword, + 'meta_keywords' => $description->meta_keywords, 'created_at' => time_format($this->created_at), 'updated_at' => time_format($this->updated_at), ]; diff --git a/beike/Shop/Http/Resources/ProductDetail.php b/beike/Shop/Http/Resources/ProductDetail.php index dcca8d0a..1f70225f 100644 --- a/beike/Shop/Http/Resources/ProductDetail.php +++ b/beike/Shop/Http/Resources/ProductDetail.php @@ -26,7 +26,7 @@ class ProductDetail extends JsonResource 'name' => $this->description->name ?? '', 'description' => $this->description->content ?? '', 'meta_title' => $this->description->meta_title ?? '', - 'meta_keyword' => $this->description->meta_keyword ?? '', + 'meta_keywords' => $this->description->meta_keywords ?? '', 'meta_description' => $this->description->meta_description ?? '', 'brand_id' => $this->brand->id ?? 0, 'brand_name' => $this->brand->name ?? '', diff --git a/database/migrations/2021_12_26_111435_create_tables.php b/database/migrations/2021_12_26_111435_create_tables.php index 3b51ca10..76eb39d6 100644 --- a/database/migrations/2021_12_26_111435_create_tables.php +++ b/database/migrations/2021_12_26_111435_create_tables.php @@ -94,7 +94,7 @@ class CreateTables extends Migration $table->text('content')->comment('描述'); $table->string('meta_title')->default('')->comment('meta 标题'); $table->string('meta_description')->default('')->comment('meta 描述'); - $table->string('meta_keyword')->default('')->comment('meta 关键词'); + $table->string('meta_keywords')->default('')->comment('meta 关键词'); $table->timestamps(); }); Schema::create('category_paths', function (Blueprint $table) { @@ -282,7 +282,7 @@ class CreateTables extends Migration $table->text('content')->comment('内容'); $table->string('meta_title')->comment('meta 标题'); $table->string('meta_description')->comment('meta 描述'); - $table->string('meta_keyword')->comment('meta 关键字'); + $table->string('meta_keywords')->comment('meta 关键字'); $table->timestamps(); }); @@ -326,7 +326,7 @@ class CreateTables extends Migration $table->text('content')->comment('产品描述'); $table->string('meta_title')->default('')->comment('meta 标题'); $table->string('meta_description')->default('')->comment('meta 描述'); - $table->string('meta_keyword')->default('')->comment('meta 关键字'); + $table->string('meta_keywords')->default('')->comment('meta 关键字'); $table->timestamps(); }); Schema::create('product_skus', function (Blueprint $table) { diff --git a/database/seeders/CategoriesSeeder.php b/database/seeders/CategoriesSeeder.php index d3e611df..cf024bf6 100644 --- a/database/seeders/CategoriesSeeder.php +++ b/database/seeders/CategoriesSeeder.php @@ -88,7 +88,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 2, @@ -98,7 +98,7 @@ class CategoriesSeeder extends Seeder "content" => "Pad", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 3, @@ -108,7 +108,7 @@ class CategoriesSeeder extends Seeder "content" => "时尚潮流", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 4, @@ -118,7 +118,7 @@ class CategoriesSeeder extends Seeder "content" => "Fashion", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 5, @@ -128,7 +128,7 @@ class CategoriesSeeder extends Seeder "content" => "相机", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 6, @@ -138,7 +138,7 @@ class CategoriesSeeder extends Seeder "content" => "Camera", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 7, @@ -148,7 +148,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 8, @@ -158,7 +158,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 9, @@ -168,7 +168,7 @@ class CategoriesSeeder extends Seeder "content" => "运动户外", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 10, @@ -178,7 +178,7 @@ class CategoriesSeeder extends Seeder "content" => "Sports", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 11, @@ -188,7 +188,7 @@ class CategoriesSeeder extends Seeder "content" => "电子数码", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 12, @@ -198,7 +198,7 @@ class CategoriesSeeder extends Seeder "content" => "Electron", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 13, @@ -208,7 +208,7 @@ class CategoriesSeeder extends Seeder "content" => "帐篷", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 14, @@ -218,7 +218,7 @@ class CategoriesSeeder extends Seeder "content" => "Tent", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 15, @@ -228,7 +228,7 @@ class CategoriesSeeder extends Seeder "content" => "男装女装", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 16, @@ -238,7 +238,7 @@ class CategoriesSeeder extends Seeder "content" => "Fashion", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 17, @@ -248,7 +248,7 @@ class CategoriesSeeder extends Seeder "content" => "男装", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 18, @@ -258,7 +258,7 @@ class CategoriesSeeder extends Seeder "content" => "Men", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 19, @@ -268,7 +268,7 @@ class CategoriesSeeder extends Seeder "content" => "夏季促销", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 20, @@ -278,7 +278,7 @@ class CategoriesSeeder extends Seeder "content" => "Summer promotion", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 21, @@ -288,7 +288,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 22, @@ -298,7 +298,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 23, @@ -308,7 +308,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 24, @@ -318,7 +318,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 25, @@ -328,7 +328,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 26, @@ -338,7 +338,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 27, @@ -348,7 +348,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 28, @@ -358,7 +358,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 29, @@ -368,7 +368,7 @@ class CategoriesSeeder extends Seeder "content" => "智能冰箱", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 30, @@ -378,7 +378,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 31, @@ -388,7 +388,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ], [ "id" => 32, @@ -398,7 +398,7 @@ class CategoriesSeeder extends Seeder "content" => "", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "" + "meta_keywords" => "" ] ]; } diff --git a/database/seeders/PagesSeeder.php b/database/seeders/PagesSeeder.php index 62c756d2..fc76a8af 100644 --- a/database/seeders/PagesSeeder.php +++ b/database/seeders/PagesSeeder.php @@ -80,7 +80,7 @@ class PagesSeeder extends Seeder "content" => "

Delivery Information

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", "created_at" => "2022-08-12 01:19:03", "updated_at" => "2022-08-12 01:19:03" ], @@ -92,7 +92,7 @@ class PagesSeeder extends Seeder "content" => "

Delivery Information

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", "created_at" => "2022-08-12 01:19:03", "updated_at" => "2022-08-12 01:19:03" ], @@ -104,7 +104,7 @@ class PagesSeeder extends Seeder "content" => "

Privacy policy

\r\n

1、 Collection and use of personal information

\r\n

 

\r\n

When you use Everbright mall services, we may ask you to provide personal information. Everbright mall will use this information in accordance with this privacy policy. You do not have to provide the personal information we require, but in many cases, if you choose not to provide it, we will not be able to provide you with our products or services or respond to any problems you encounter.

\r\n

 

\r\n

The following provides some examples of the types of personal information that Everbright mall may collect and how we use such information:

\r\n

 

\r\n

2、 What personal information do we collect

\r\n

 

\r\n

When you create an account, buy products, download software updates and contact us, we may collect various information, including your name, mailing address, telephone number, e-mail address, contact information and preferences.

\r\n

 

\r\n

When you use Everbright mall to purchase goods or gift cards, Everbright mall may collect information related to the above persons provided by you, such as name, mailing address, e-mail address and telephone number. Everbright mall will use this information to meet your requirements, provide relevant products or services, or achieve anti fraud purposes.

\r\n

 

\r\n

In some jurisdictions, for the purpose of complying with the law, we may require users to provide identification issued by the government, but only in a few cases, such as customs declaration.

\r\n

 

\r\n

4、 How do we use your personal information

\r\n

 

\r\n

We will inform you of the latest product release, software update and activity forecast in time. If you don't want to be on our mailing list, you can opt out at any time by updating your preferences.

\r\n

 

\r\n

We may use your personal information (such as email address or mobile phone number) to verify and determine the user's identity.

\r\n

 

\r\n

We may use personal information to send important notices, such as order information about purchases. Since this information is very important for your communication with the mall, you cannot refuse to receive such information.

\r\n

 

\r\n

We will also use personal information for internal purposes such as audit, data analysis and research to improve Everbright mall's products, services and communication with customers.

\r\n

 

\r\n

5、 Collection and use of non personal information

\r\n

 

\r\n

We will also collect and use data that cannot be directly linked to any particular individual by itself. We may collect, use, transfer and disclose non personal information for any purpose. Below are some examples of non personal information we may collect and how we use it.

\r\n

 

\r\n

We will collect information such as occupation, language, zip code, area code, unique device identifier, referral URL, location and time zone when users use the product, so that we can better understand customers' behavior and improve our products, services and advertising.

\r\n

 

\r\n

We collect information about our customers' activities on our website. We will summarize such information to help us provide customers with more useful information and understand which parts of our website, products and services customers are most interested in. For the purposes of this privacy policy, aggregated data is considered non personal information.

\r\n

 

\r\n

We may collect and store detailed information about how you use our services, including search queries. Such information may be used to improve the results of our service delivery and make it more relevant. Such information usually does not involve your IP address, except for the following few cases: we need to ensure the quality of services provided through the Internet.

\r\n

 

\r\n

6、 Cookies and other technologies

\r\n

 

\r\n

Everbright mall or email and advertising may use cookies and other technologies, such as pixel tags and website beacons. These technologies help us better understand user behavior, tell us what parts of our website people visit, measure and improve the effectiveness of advertising and web search. We treat information collected through cookies and other technologies as non personal information. However, if local laws treat Internet Protocol (IP) addresses or similar identification marks as personal information, we also treat such identification marks as personal information. Similarly, for the purpose of this privacy policy, in the case of combining non personal information with personal information, we treat the combined information as personal information.

\r\n

 

\r\n

Like most Internet services, we automatically collect certain information and store it in log files. Such information includes IP address, browser type and language, operating system, date \/ time stamp, etc.

\r\n

 

\r\n

We use this information to understand and analyze trends, manage the website, understand user behavior on the website, improve our products and services, and collect information on the overall audience characteristics of the user base. Everbright mall can use this information for our marketing and advertising services.

\r\n

 

\r\n

Pixel tags allow us to send email in a format that customers can read and tell us whether the email is open. We can use this information to reduce or eliminate email to customers.

\r\n

 

\r\n

7、 Other

\r\n

 

\r\n

It may be necessary for Everbright mall to disclose your personal information according to the laws, legal procedures, litigation and or the requirements of public institutions and government departments at home and abroad. We may also disclose information about you if we determine that disclosure is necessary or appropriate for national security, law enforcement or other matters of public importance.

\r\n

 

\r\n

We may also disclose information about you if we determine that disclosure is reasonably necessary to enforce our terms and conditions or protect our operations or users. In addition, in case of reorganization, merger or sale, we can transfer all personal information we collect to relevant third parties.

\r\n

 

\r\n

Protection of personal information Everbright mall attaches great importance to the security of your personal information. Everbright mall will use encryption technologies such as transport layer security protocol (TLS) to protect your personal information during transmission. When storing your personal data in Everbright mall, we will use computer systems with limited access rights, which are deployed in facilities protected by physical security measures. Your account and password are stored in encrypted form, which is also true when we use third-party storage space.

\r\n

 

\r\n

8、 Privacy issues

\r\n

 

\r\n

If you have any questions or questions about Everbright mall's privacy policy or data processing, or want to complain about possible violations of local privacy laws, please contact us. You can call the support number of Everbright mall to contact us at any time.

\r\n

 

\r\n

When receiving privacy issues or access \/ download requests, we will screen and classify the contacts and try to solve the specific problems or questions you raise. If your question itself involves more important matters, we may ask you for more information. These contacts who ask more important questions will receive replies. If you are not satisfied with the response received, you can refer the complaint to the relevant regulatory authority in your jurisdiction. If you consult us, we will provide information on possible applicable complaint channels according to your actual situation. Everbright mall can update its privacy policy at any time. If we make significant changes to our privacy policy, we will publish announcements and updated privacy policies on the company's website.

", "meta_title" => "23", "meta_description" => "", - "meta_keyword" => "213123", + "meta_keywords" => "213123", "created_at" => "2022-08-12 01:54:01", "updated_at" => "2022-08-12 01:54:01" ], @@ -116,7 +116,7 @@ class PagesSeeder extends Seeder "content" => "

隐私政策

\r\n

一、个人信息的收集和使用

\r\n

当您使用《成都光大网络科技有限公司》商城服务时,我们有可能会要求你提供个人信息。《成都光大网络科技有限公司》商城将按本隐私政策使用这些信息。你不是一定要提供我们要求的个人信息,但在许多情况下,如果你选择不提供,我们将无法为你提供我们的产品或服务,也无法回应你遇到的任何问题。

\r\n

以下提供了一些成都光大网络科技有限公司商城可能收集的个人信息类型以及我们如何使用此类信息的示例:

\r\n

二、我们收集哪些个人信息

\r\n

当你创建账号、购买产品、下载软件更新、联系我们时,我们可能会收集各种信息,包括你的姓名、邮寄地址、电话号码、电子邮件地址、联系方式偏好等信息。

\r\n

当你使用成都光大网络科技有限公司商城购买商品或礼品卡时,成都光大网络科技有限公司商城可能会收集你提供的与上述人士有关的信息,如姓名、邮寄地址、电子邮件地址以及电话号码。成都光大网络科技有限公司商城将使用此类信息来满足你的要求,提供相关的产品或服务,或实现反欺诈目的。

\r\n

在某些司法辖区,出于遵守法律规定的目的,我们可能会要求用户提供由政府发放的身份证明,但仅限于为数不多的情形,例如海关报关。

\r\n

四、我们如何使用你的个人信息

\r\n

我们将最新产品发布、软件更新及活动预告及时通知你。如果你不希望列入我们的邮寄列表,可随时通过更新偏好设置选择退出。

\r\n

我们可能会使用你的个人信息(例如电子邮件地址或手机号码)来验证及确定用户身份。

\r\n

我们可能会使用个人信息发送重要通知,例如关于购买的相关订单信息。由于这些信息对你与商城之间的沟通至关重要,你不能拒绝接收此类信息。

\r\n

我们还会将个人信息用于审计、数据分析和研究等内部目的,以改进成都光大网络科技有限公司商城的产品、服务和与客户之间的沟通。

\r\n

我们系统集成了cn.jpush.android(极光;极光推送) com.huawei.hms(华为;华为推送) com.alipay(支付宝;阿里乘车码;阿里芝麻信用实名认证;芝麻认证) com.tencent.bugly(Bugly;腾讯Bugly)等SDK,将在APP推送消息时推送给您,用于发送系统最新消息。

\r\n

五、非个人信息的收集和使用

\r\n

我们还会收集利用其本身无法与任何特定个人直接建立联系的数据。我们可出于任何目的而收集、使用、转让和披露非个人信息。下文是我们可能收集的非个人信息以及我们如何使用这些信息的一些示例。

\r\n

我们会收集诸如职业、语言、邮编、区号、唯一设备标识符、引荐 URL、位置以及用户在使用产品时所处时区等信息,以便我们能更好地了解客户的行为,改进我们的产品、服务和广告宣传。

\r\n

我们会收集与客户在我们的网站上活动有关的信息。我们会将此类信息汇总,用于帮助我们向客户提供更有用的信息,了解客户对我们网站、产品和服务中的哪些部分最感兴趣。就本隐私政策而言,汇总数据被视为非个人信息。

\r\n

我们可能会收集和存储有关你如何使用我们的服务的详细信息,包括搜索查询。此类信息可能会用于改进我们的服务提供的结果,使其更具相关性。此类信息通常不会涉及你的 IP 地址,但以下少数情况除外:我们需要确保通过互联网提供的服务的质量。

\r\n

六、Cookie 和其他技术

\r\n

成都光大网络科技有限公司商城或电子邮件和广告可能会使用 Cookie 和其他技术,如像素标签和网站信标。此等技术帮助我们更好地了解用户的行为,告诉我们人们浏览了我们网站的哪些部分,衡量广告和网络搜索的效果并加以改善。我们将通过 Cookie 和其他技术收集的信息视为非个人信息。但是,如果当地法律将 Internet 协议 (IP) 地址或类似识别标记视为个人信息,则我们亦将此等识别标记视为个人信息。同样,就本隐私政策而言,在将非个人信息与个人信息结合使用的情况下,我们将结合使用的信息视为个人信息。

\r\n

如同大多数互联网服务一样,我们也会自动收集某些信息,将其存储在日志文件中。这类信息包括 IP 地址、浏览器类型和语言、操作系统、日期\/时间戳等。

\r\n

我们使用此等信息来了解和分析趋势、管理网站、了解网站上的用户行为、改进我们的产品和服务,以及收集用户群的整体受众特征信息。成都光大网络科技有限公司商城可将此类信息用于我们的营销和广告服务。

\r\n

像素标签使我们可以用客户可阅读的格式发送电子邮件,并告知我们邮件是否被打开。我们可利用这些信息来减少或免除向客户发送的电子邮件。

\r\n

七、其他

\r\n

根据你居住国境内外的法律、法律程序、诉讼和或公共机构和政府部门的要求,成都光大网络科技有限公司商城可能有必要披露你的个人信息。如果我们确定就国家安全、执法或具有公众重要性的其他事宜而言,披露是必须的或适当的,我们也可能会披露关于你的信息。

\r\n

如果我们确定为了执行我们的条款和条件或保护我们的经营或用户,披露是合理必要的,我们也可能会披露关于你的信息。此外,如果发生重组、合并或出售,则我们可将我们收集的一切个人信息转让给相关第三方。

\r\n

个人信息的保护成都光大网络科技有限公司商城非常重视你的个人信息的安全。成都光大网络科技有限公司商城会使用传输层安全协议 (TLS) 等加密技术,在传输过程中保护你的个人信息。在成都光大网络科技有限公司商城存储你的个人数据时,我们会使用具有有限访问权限的电脑系统,这些系统部署在通过物理安全措施加以保护的设施之中。您的账号密码以加密形式存储,在我们使用第三方存储空间时也是如此。

\r\n

八、隐私问题

\r\n

如果你对成都光大网络科技有限公司商城的隐私政策或数据处理有任何问题或疑问,或者想就可能违反当地隐私权法律的情况进行投诉,请联系我们。你可以随时拨打成都光大网络科技有限公司商城支持电话号码与我们联系。

\r\n

当收到隐私问题或访问\/下载请求时,我们将对联系人进行甄别分类,并将设法解决您提出的具体问题或疑问。如果您的问题本身涉及比较重大的事项,我们可能会要求您提供更多信息。这些提出比较重大问题的联系人均将收到回复。如果您对收到的答复不满意,您可以将投诉移交给所在司法辖区的相关监管机构。如果您咨询我们,我们会根据您的实际情况,提供可能适用的相关投诉途径的信息。 成都光大网络科技有限公司商城可随时对其隐私政策加以更新。如果我们对隐私政策作出重大变更,我们将在公司网站上发布通告和经更新的隐私政策。

\r\n

权限说明:

\r\n

     1、<android.permission.WRITE_EXTERNAL_STORAGE> 获取用户sd卡文件,在用户授权的情况下用于个人中心修改头像以及商品购买前联系客服咨询相关商品信息。

\r\n

     2、<android.permission.CAMERA> 调用摄像头权限,在用户授权的情况下 用于个人中心修改头像以及商品购买前联系客服咨询相关商品信息,以及首页扫描二维码帮助参加砍价、团购等商品促销            活动。

\r\n

     3、<android.permission.RECORD_AUDIO> 录音权限,在用户授权的情况下商品购买前联系客服发送语音咨询相关商品信息

\r\n

 

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", "created_at" => "2022-08-12 01:54:01", "updated_at" => "2022-08-12 01:54:01" ], @@ -128,7 +128,7 @@ class PagesSeeder extends Seeder "content" => "

Terms & Conditions

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", "created_at" => "2022-08-31 16:05:49", "updated_at" => "2022-08-31 16:05:49" ], @@ -140,7 +140,7 @@ class PagesSeeder extends Seeder "content" => "

Terms & Conditions

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", "created_at" => "2022-08-31 16:05:49", "updated_at" => "2022-08-31 16:05:49" ], @@ -152,7 +152,7 @@ class PagesSeeder extends Seeder "content" => "
\r\n
\r\n
Chengdu Guangda Network Technology Co., Ltd. is a high-tech enterprise mainly engaged in the development of Internet independent station systems.
\r\n
We provide commercial technical support, secondary development, mobile app customization and template design related to cross-border open source e-commerce website construction.
\r\n
 
\r\n
- Cutting-edge open source e-commerce independent station system
\r\n
    \r\n
  • An integrated website building package from PC to mobile phone, suitable for various devices, one-stop e-commerce website building
  • \r\n
  • It can solve the data exchange between mobile users and PC users, one core and two stores
  • \r\n
  • 100% open source system code
  • \r\n
  • Developed based on Laravel framework
  • \r\n
  • Powerful plug-in mechanism, easy function expansion
  • \r\n
  • The mall supports multi-language\/multi-currency, various payment methods, and supports PayPal, stripe and other payments
  • \r\n
  • Strictly follow the MVC architecture
  • \r\n
  • The homepage UI layout is up to you
  • \r\n
\r\n
 
\r\n
contact details:
\r\n
The company brings together industry elites and has a high-end, honest, professional and efficient service team and technical team to provide our customers with safe and stable system software and services. For business cooperation, please contact us!
\r\n
 
\r\n
Working hours: Monday to Friday (9:00 - 18:00)
\r\n
Contact: Mr. Liang
\r\n
Company Email: marketing@guangda.work
\r\n
Postal Code: 611731
\r\n
Address: G8 Tianfu Software Park Chengdu China
\r\n
\r\n
", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", "created_at" => "2022-09-02 11:04:30", "updated_at" => "2022-09-02 11:04:30" ], @@ -164,7 +164,7 @@ class PagesSeeder extends Seeder "content" => "
成都光大网络科技有限公司,是一家主要从事互联网独立站系统开发的高科技企业。
\r\n

\r\n
我们提供跨境开源电商建站相关的商业技术支持、二次开发、手机商城 App 定制和模板设计。
\r\n
 
\r\n

- 前沿的开源电商独立站系统

\r\n\r\n
\r\n

联系方式:

\r\n

公司汇聚行业精英,拥有高端、诚信、专业、高效的服务团队和技术团队,为广大客户提供安全、稳定的系统软件和服务。如需商业合作,请联系我们!

\r\n

工作时间:周一到周五(9:00 - 18:00)

\r\n

联系人:梁先生

\r\n

公司邮箱:marketing@guangda.work

\r\n

邮政编码:611731

\r\n

地址:成都市武侯区高新区益州大道中段1858号天府软件园G8-3楼

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", "created_at" => "2022-09-02 11:04:30", "updated_at" => "2022-09-02 11:04:30" ], diff --git a/database/seeders/ProductsSeeder.php b/database/seeders/ProductsSeeder.php index 0ee8f149..e0b7255d 100644 --- a/database/seeders/ProductsSeeder.php +++ b/database/seeders/ProductsSeeder.php @@ -352,7 +352,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 20, @@ -362,7 +362,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 23, @@ -372,7 +372,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 24, @@ -382,7 +382,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 27, @@ -392,7 +392,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 28, @@ -402,7 +402,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 31, @@ -412,7 +412,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 32, @@ -422,7 +422,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 35, @@ -432,7 +432,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 36, @@ -442,7 +442,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 65, @@ -452,7 +452,7 @@ class ProductsSeeder extends Seeder "content" => "fdsfsd", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 66, @@ -462,7 +462,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 67, @@ -472,7 +472,7 @@ class ProductsSeeder extends Seeder "content" => "测试下商品详情", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 68, @@ -482,7 +482,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 75, @@ -492,7 +492,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 76, @@ -502,7 +502,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 79, @@ -512,7 +512,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 80, @@ -522,7 +522,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 83, @@ -532,7 +532,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 84, @@ -542,7 +542,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 85, @@ -552,7 +552,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 86, @@ -562,7 +562,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 87, @@ -572,7 +572,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 88, @@ -582,7 +582,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 89, @@ -592,7 +592,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 90, @@ -602,7 +602,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 101, @@ -612,7 +612,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 102, @@ -622,7 +622,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 105, @@ -632,7 +632,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 106, @@ -642,7 +642,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 115, @@ -652,7 +652,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 116, @@ -662,7 +662,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 125, @@ -672,7 +672,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 126, @@ -682,7 +682,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 149, @@ -692,7 +692,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 150, @@ -702,7 +702,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 203, @@ -712,7 +712,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 204, @@ -722,7 +722,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 291, @@ -732,7 +732,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 292, @@ -742,7 +742,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", "created_at" => "2022-08-26 09:20:14", "updated_at" => "2022-08-26 09:20:14" ], @@ -754,7 +754,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 294, @@ -764,7 +764,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 295, @@ -774,7 +774,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 296, @@ -784,7 +784,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 297, @@ -794,7 +794,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 298, @@ -804,7 +804,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 299, @@ -814,7 +814,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 300, @@ -824,7 +824,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 301, @@ -834,7 +834,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 302, @@ -844,7 +844,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 303, @@ -854,7 +854,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 304, @@ -864,7 +864,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 305, @@ -874,7 +874,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], [ "id" => 306, @@ -884,7 +884,7 @@ class ProductsSeeder extends Seeder "content" => "

", "meta_title" => "", "meta_description" => "", - "meta_keyword" => "", + "meta_keywords" => "", ], ]; } diff --git a/database/seeders/SettingsSeeder.php b/database/seeders/SettingsSeeder.php index 9033d4db..a4a0e94b 100644 --- a/database/seeders/SettingsSeeder.php +++ b/database/seeders/SettingsSeeder.php @@ -65,7 +65,7 @@ class SettingsSeeder extends Seeder ["type" => "system", "space" => "base", "name" => "favicon", "value" => "catalog/favicon.png", "json" => 0], ["type" => "system", "space" => "base", "name" => "meta_title", "value" => "BeikeShop开源好用的跨境电商系统 - BeikeShop官网", "json" => 0], ["type" => "system", "space" => "base", "name" => "meta_description", "value" => "BeikeShop 是一款开源好用的跨境电商建站系统,基于 Laravel 开发。主要面向外贸,和跨境行业。系统提供商品管理、订单管理、会员管理、支付、物流、系统管理等丰富功能", "json" => 0], - ["type" => "system", "space" => "base", "name" => "meta_keyword", "value" => "开源电商,开源代码,开源电商项目,b2b独立站,dtc独立站,跨境电商网", "json" => 0], + ["type" => "system", "space" => "base", "name" => "meta_keywords", "value" => "开源电商,开源代码,开源电商项目,b2b独立站,dtc独立站,跨境电商网", "json" => 0], ["type" => "system", "space" => "base", "name" => "telephone", "value" => "028-87966209", "json" => 0], ["type" => "system", "space" => "base", "name" => "email", "value" => "marketing@guangda.work", "json" => 0], ["type" => "system", "space" => "base", "name" => "menu_setting", "value" => $this->getMenuSetting(), "json" => 1], diff --git a/resources/beike/admin/views/pages/pages/form.blade.php b/resources/beike/admin/views/pages/pages/form.blade.php index d03d3c83..36803495 100644 --- a/resources/beike/admin/views/pages/pages/form.blade.php +++ b/resources/beike/admin/views/pages/pages/form.blade.php @@ -47,7 +47,7 @@ - + @endforeach diff --git a/resources/beike/admin/views/pages/products/form/form.blade.php b/resources/beike/admin/views/pages/products/form/form.blade.php index d5e7b400..3e41bb83 100644 --- a/resources/beike/admin/views/pages/products/form/form.blade.php +++ b/resources/beike/admin/views/pages/products/form/form.blade.php @@ -334,7 +334,7 @@ @foreach ($languages as $language)
{{ $language['name'] }} - +
@endforeach diff --git a/resources/beike/admin/views/pages/setting.blade.php b/resources/beike/admin/views/pages/setting.blade.php index eaaabe69..c3b87c62 100644 --- a/resources/beike/admin/views/pages/setting.blade.php +++ b/resources/beike/admin/views/pages/setting.blade.php @@ -32,7 +32,7 @@
- +
diff --git a/resources/lang/de/admin/setting.php b/resources/lang/de/admin/setting.php index f3e3fc7f..f39f8268 100644 --- a/resources/lang/de/admin/setting.php +++ b/resources/lang/de/admin/setting.php @@ -45,7 +45,7 @@ return [ 'payment_address' => 'Rechnungsadresse', 'meta_title' => 'Metatitel', 'meta_description' => 'Meta-Beschreibung', - 'meta_keyword' => 'Meta-Schlüsselwort', + 'meta_keywords' => 'Meta-Schlüsselwort', 'telephone' => 'Telefon kontaktieren', 'email' => 'Postfach', 'default_address' => 'Standardadresse', diff --git a/resources/lang/en/admin/setting.php b/resources/lang/en/admin/setting.php index a4be8861..1c733e7f 100644 --- a/resources/lang/en/admin/setting.php +++ b/resources/lang/en/admin/setting.php @@ -46,7 +46,7 @@ return [ 'meta_title' => 'Meta Title', 'meta_description' => 'Meta Description', - 'meta_keyword' => 'Meta Keyword', + 'meta_keywords' => 'Meta Keyword', 'telephone' => 'Contact Phone', 'email' => 'Mailbox', 'default_address' => 'Default Address', diff --git a/resources/lang/es/admin/setting.php b/resources/lang/es/admin/setting.php index 9f9c5c16..c88c9da0 100644 --- a/resources/lang/es/admin/setting.php +++ b/resources/lang/es/admin/setting.php @@ -46,7 +46,7 @@ return [ 'payment_address' => 'Dirección de Envio', 'meta_title' => 'Meta título', 'meta_description' => 'Meta descripción', - 'meta_keyword' => 'Metapalabra clave', + 'meta_keywords' => 'Metapalabra clave', 'telephone' => 'Teléfono de contacto', 'email' => 'Correo', 'default_address' => 'dirección predeterminada', diff --git a/resources/lang/fr/admin/setting.php b/resources/lang/fr/admin/setting.php index 6acdd270..1ebe02d3 100644 --- a/resources/lang/fr/admin/setting.php +++ b/resources/lang/fr/admin/setting.php @@ -45,7 +45,7 @@ return [ 'payment_address' => 'Adresse de facturation', 'meta_title' => 'Méta titre', 'meta_description' => 'Méta description', - 'meta_keyword' => 'Méta-mot clé', + 'meta_keywords' => 'Méta-mot clé', 'telephone' => 'numéro de contact', 'email' => 'Courrier', 'default_address' => 'Adresse par défaut', diff --git a/resources/lang/it/admin/setting.php b/resources/lang/it/admin/setting.php index 8df41b2f..ea43d27f 100644 --- a/resources/lang/it/admin/setting.php +++ b/resources/lang/it/admin/setting.php @@ -45,7 +45,7 @@ return [ 'payment_address' => 'indirizzo di fatturazione', 'meta_title' => 'Meta titolo', 'meta_description' => 'Meta descrizione', - 'meta_keyword' => 'Meta parola chiave', + 'meta_keywords' => 'Meta parola chiave', 'telephone' => 'Contatta telefono', 'email' => 'cassetta postale', 'default_address' => 'indirizzo predefinito', diff --git a/resources/lang/ja/admin/setting.php b/resources/lang/ja/admin/setting.php index d691ac14..dab69936 100644 --- a/resources/lang/ja/admin/setting.php +++ b/resources/lang/ja/admin/setting.php @@ -45,7 +45,7 @@ return [ 'payment_address' => '請求先住所', 'meta_title' => 'メタタイトル', 'meta_description' => 'メタディスクリプション', - 'meta_keyword' => 'メタキーワード', + 'meta_keywords' => 'メタキーワード', 'telephone' => '連絡先電話', 'email' => 'メールボックス', 'default_address' => 'デフォルトアドレス', diff --git a/resources/lang/ru/admin/setting.php b/resources/lang/ru/admin/setting.php index c26c3100..0c38df5d 100644 --- a/resources/lang/ru/admin/setting.php +++ b/resources/lang/ru/admin/setting.php @@ -45,7 +45,7 @@ return [ 'payment_address' => 'Адрес для выставления счета', 'meta_title' => 'Мета-заголовок', 'meta_description' => 'Мета-описание', - 'meta_keyword' => 'Мета-ключевые слова', + 'meta_keywords' => 'Мета-ключевые слова', 'telephone' => 'Контактный номер', 'email' => 'Почта', 'default_address' => 'адрес по умолчанию', diff --git a/resources/lang/zh_cn/admin/setting.php b/resources/lang/zh_cn/admin/setting.php index 26feb6e3..b9ed8019 100644 --- a/resources/lang/zh_cn/admin/setting.php +++ b/resources/lang/zh_cn/admin/setting.php @@ -45,7 +45,7 @@ return [ 'payment_address' => '账单地址', 'meta_title' => 'Meta 标题', 'meta_description' => 'Meta 描述', - 'meta_keyword' => 'Meta 关键词', + 'meta_keywords' => 'Meta 关键词', 'telephone' => '联系电话', 'email' => '邮箱', 'default_address' => '默认地址', diff --git a/resources/lang/zh_hk/admin/setting.php b/resources/lang/zh_hk/admin/setting.php index 1f97ada8..a4e9c7a5 100644 --- a/resources/lang/zh_hk/admin/setting.php +++ b/resources/lang/zh_hk/admin/setting.php @@ -45,7 +45,7 @@ return [ 'payment_address' => '賬單地址', 'meta_title' => 'Meta 標題', 'meta_description' => 'Meta 描述', - 'meta_keyword' => 'Meta 關鍵詞', + 'meta_keywords' => 'Meta 關鍵詞', 'telephone' => '聯繫電話', 'email' => '郵箱', 'default_address' => '默認地址', diff --git a/themes/default/layout/master.blade.php b/themes/default/layout/master.blade.php index 1dc20c28..f876c145 100644 --- a/themes/default/layout/master.blade.php +++ b/themes/default/layout/master.blade.php @@ -6,7 +6,7 @@ @yield('title', system_setting('base.meta_title', 'BeikeShop开源好用的跨境电商系统 - BeikeShop官网')) - + diff --git a/themes/default/pages/detail.blade.php b/themes/default/pages/detail.blade.php index ae9d3e19..34e12414 100644 --- a/themes/default/pages/detail.blade.php +++ b/themes/default/pages/detail.blade.php @@ -1,7 +1,7 @@ @extends('layout.master') @section('body-class', 'page-pages') @section('title', $page['meta_title'] ?: $page['title']) -@section('keywords', $page['meta_keyword']) +@section('keywords', $page['meta_keywords']) @section('description', $page['meta_description']) @section('content')