Index.php
3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php
namespace App\Http\Controllers;
use App\Fun;
use Illuminate\Support\Facades\View;
class Index extends Controller
{
//
public function __construct()
{
View::share('_langs',Fun::lang());
View::share('the_lang',THE_LANG);
// 设置语言
\Illuminate\Support\Facades\App::setLocale(THE_LANG);
}
/**
* 首页
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View
* @author:dc
* @time 2022/11/16 9:06
*/
public function home()
{
$this->seo('home');
return view('home');
}
public function about()
{
$this->seo('about');
return view('about');
}
public function blog()
{
$this->seo('blog');
return view('blog');
}
public function kolSolution()
{
$this->seo('kolSolution');
return view('kolSolution');
}
public function fqa()
{
$this->seo('fqa');
return view('fqa');
}
public function shop()
{
$this->seo('shop');
return view('shop');
}
public function shopApp()
{
$this->seo('shopApp');
return view('shopk_app');
}
private function seo($page='home'){
$seo = [
'home' => [
'type' => '',
'app_name' => '',
'title' => '',
'keywords' => '',
'description' => ''
],
'about' => [
'type' => '',
'app_name' => '',
'title' => '',
'keywords' => '',
'description' => ''
],
'blog' => [
'type' => 'page',
'app_name' => 'ShopK',
'title' => 'ShopK - Trusted Online Reselling APP',
'keywords' => 'Shopping, APP, Shopk, Online Reseller App',
'description' => 'ShopK gives users access to a virtual shop, millions of products from trusted suppliers, payment and shipping facilities thereby removing the hassles of'
],
'kolSolution' => [
'type' => 'page',
'app_name' => 'ShopK',
'title' => 'Kol Solution',
'keywords' => '',
'description' => ''
],
'fqa' => [
'type' => 'page',
'app_name' => 'ShopK',
'title' => 'FAQs',
'keywords' => '',
'description' => 'What do I need to do to sign up? Simply fill out the application form to get started. We’ll contact you by WhatsApp. Does it cost me anything to become a ShopK affiliate? The program is free to join, there are no charges.'
],
'shop' => [
'type' => 'page',
'app_name' => 'ShopK',
'title' => 'Shop',
'keywords' => '',
'description' => ''
],
'shopApp' => [
'type' => 'page',
'app_name' => 'ShopK',
'title' => 'ShopK APP Download – Trusted Online Reselling APP',
'keywords' => '',
'description' => 'ShopK APP Download – Trusted Online Reselling APP'
],
];
View::share('seo',$seo[$page]);
}
}