MainController.php
5.91 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
namespace App\Http\Controllers;
use App\Models\Banner;
use App\Models\Category;
use App\Models\Good;
use App\Models\Good_Look;
use App\Models\Images;
use App\Models\News;
use App\Models\Project;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Redirect;
use Symfony\Component\HttpFoundation\Session\Storage;
class MainController extends Controller
{
// Главная страница
public function index(Request $request) {
$banners = Banner::query()->orderBy('id')->get();
$category = Category::query()->where('parent_id', '>', '0')->orderBy('id')->get();
if (isset($request->filter)) {
switch($request->filter) {
case 'news':$goods = Good::query()->where('new', '=', '1')->orderBy('id')->paginate(8);
break;
case 'stock':$goods = Good::query()->where('stock_count', '>', '0')->orderBy('id')->paginate(8);
break;
case 'demo':$goods = Good::query()->where('demo', '=', '1')->orderBy('id')->paginate(8);
break;
case 'way':$goods = Good::query()->where('way', '=', '1')->orderBy('id')->paginate(8);
break;
}
} else {
$goods = Good::query()->where('new', '=', '1')->orderBy('id')->paginate(8);
}
if ($request->ajax()) {
return view('index_catalog', compact('goods'));
}
$news = News::query()->where('status', '=', 'новость')->orderByDesc('id')->paginate(3);
return view('index',
compact('banners', 'category', 'goods', 'news'));
}
public function about_company() {
return view('company');
}
public function catalog(Request $request) {
$items = Category::all();
$goods = Good::query();
$articles = News::query()->where('status', '=', 'статья')->paginate(10);
$reviews = News::query()->where('status', '=', 'отзыв')->paginate(10);
$lookin = Good_Look::query()->orderByDesc('id')->limit(4)->pluck('goods_id')
->toArray();
$lookin_good = Good::query()->whereIn('id', $lookin)->get();
if (!empty($request->filter)) {
$filter = json_decode($request->filter);
if (is_array($filter))
if (count($filter) > 0)
$goods = $goods->whereIn('manufacturer', $filter);
}
if ($request->sort == 'count') {
$goods = $goods->orderByDesc('stock_count')->orderByDesc('id');
}
if ($request->sort == 'price') {
$goods = $goods->orderBy('price')->orderByDesc('id');
}
$goods = $goods->paginate(6);
if ($request->ajax()) {
return view('catalog_ajax', compact('goods'));
}
$mf = Good::select('manufacturer')->distinct()->pluck('manufacturer');
return view('catalog', compact('items', 'goods',
'mf', 'articles', 'reviews', 'lookin_good'));
}
public function catalog_detail(Category $category, Request $request) {
$items = Category::all();
$title = $category->name;
$goods = Good::query()->where('category_id', '=', $category->id);
$articles = News::query()->where('status', '=', 'статья')->paginate(10);
$reviews = News::query()->where('status', '=', 'отзыв')->paginate(10);
$lookin = Good_Look::query()->orderByDesc('id')->limit(4)->pluck('goods_id')
->toArray();
$lookin_good = Good::query()->whereIn('id', $lookin)->get();
if (!empty($request->filter)) {
$filter = json_decode($request->filter);
if (is_array($filter))
if (count($filter) > 0)
$goods = $goods->whereIn('manufacturer', $filter);
}
if ($request->sort == 'count') {
$goods = $goods->orderByDesc('stock_count')->orderByDesc('id');
}
if ($request->sort == 'price') {
$goods = $goods->orderBy('price')->orderByDesc('id');
}
$goods = $goods->paginate(6);
if ($request->ajax()) {
return view('catalog_ajax', compact('goods'));
}
$mf = Good::select('manufacturer')->distinct()->where('category_id', '=', $category->id)->pluck('manufacturer');
return view('catalog_detail', compact('items', 'category', 'goods',
'title', 'mf', 'articles', 'reviews', 'lookin_good'));
}
public function good(Good $good) {
$looking = new Good_Look();
$looking->goods_id = $good->id;
$looking->save();
$lookin = Good_Look::query()->orderByDesc('id')->limit(4)->pluck('goods_id')
->toArray();
$lookin_good = Good::query()->whereIn('id', $lookin)->get();
$projects = Project::query()->orderByDesc('id')->paginate(10);
$sample = Images::query()->where('sample', '=', '1')->where('good_id', '=', $good->id)->get();
$images = Images::query()->where('sample', '=', '0')->where('good_id', '=', $good->id)->get();
$accessory = Good::query()->where('accessory_id', '=', $good->id)->limit(8)->get();
$tooling = Good::query()->where('tooling_id', '=', $good->id)->limit(8)->get();
$also_good = Good::query()->where('category_id', '=', $good->category_id)->limit(4)->get();
return view('good', compact('good', 'accessory', 'tooling', 'also_good',
'sample', 'images', 'lookin_good', 'projects'));
}
public function simple_good(Good $good) {
$looking = new Good_Look();
$looking->goods_id = $good->id;
$looking->save();
$lookin = Good_Look::query()->orderByDesc('id')->limit(4)->pluck('goods_id')
->toArray();
$lookin_good = Good::query()->whereIn('id', $lookin)->get();
return view('simple_good', compact('good', 'lookin_good'));
}
public function online() {
return redirect()->back();
}
}