Blame view

resources/views/catalog.blade.php 19.2 KB
242debab8   thesolarwind   Первый коммит в п...
1
2
3
4
5
  @extends('layout.site', ['title' => 'Каталог RentTorg'])
  
  @section('filter')
     @include('part.filter.catalog')
  @endsection
f615f47db   Андрей Ларионов   Страница каталога...
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
161
162
163
164
165
166
167
  @section('custom_js')
      <script>
         $(window).load(function() {
            var url_str = "<?=url()->full();?>";
            var url = new URL(url_str);
            var searchParams = new URLSearchParams(url.search.substring(1));
  
            var area = searchParams.get("area"),
                type_area = searchParams.get("type_area"),
                format_area= searchParams.get("format_area"),
                address= searchParams.get("address");
  
            var area_name = $('#area_name');
            var type_area_name = $('#type_area_name');
            var format_area_name = $('#format_area_name');
            var address_name = $('#address');
  
            if ((area !== "") || (type_area !== "") || (format_area !== "") || (address !== ""))
             {
                 $.ajax({
                     type: "GET",
                     url: "{{ route('catalog_ajax_filter') }}",
                     data: "area=" + area + "&type_area=" + type_area + "&format_area=" + format_area + "&address=" + address + "",
                     success: function (data) {
                         console.log('Фильтры данных были переданы ');
                         data = JSON.parse(data);
                         console.log(data);
  
                         if (area !== "") {
                             area_name.html(data[0]);
                         }
                         if (type_area !== "") {
                             type_area_name.html(data[1]);
                         }
                         if (format_area !== "") {
                             format_area_name.html(data[2]);
                         }
                         if (address !== "") {
                             address_name.html(data[3]);
                         }
  
                     },
                     headers: {
                         'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                     },
                     error: function (data) {
                         console.log('Error: ' + data);
                     }
                 });
             }
         });
  
          $(document).on('click', '.js_sort_group_item', function() {
                  var val = $(this).data('val');
                  var sort_price_val = '';
                  var sort_area_val = '';
                  var sort_new_val = '';
  
                  $('.sort-price').each(function() {
                      var this_ = $(this);
                      var v = $(this).data('val');
                      if (this_.hasClass('active'))
                          sort_price_val = v;
                  });
  
                  $('.sort-new').each(function() {
                      var v = $(this).data('val');
                      var this_ = $(this);
                      if (this_.hasClass('active'))
                          sort_new_val = v;
                  });
  
                  $('.sort-area').each(function() {
                      var v = $(this).data('val');
                      var this_ = $(this);
                      if (this_.hasClass('active'))
                          sort_area_val = v;
  
                  });
  
                  console.log('-------------------');
                  $.ajax({
                      type: "GET",
                      url: "{{ route('catalog') }}",
                      data: "view=arenda&sort_price="+sort_price_val+"&sort_new="+sort_new_val+"&sort_area="+sort_area_val+""+
                            "&area=<?if (isset($_GET['area'])) echo $_GET['area'];?>&type_area=<?if (isset($_GET['type_area'])) echo $_GET['type_area'];?>&format_area=<? if (isset($_GET['format_area'])) echo $_GET['format_area'];?>"+
                            "&area_m2_min=<? if (isset($_GET['area_m2_min'])) echo $_GET['area_m2_min'];?>&area_m2_max=<? if (isset($_GET['area_m2_max'])) echo $_GET['area_m2_max'];?>"+
                            "&price_min=<? if (isset($_GET['price_min'])) echo $_GET['price_min'];?>&price_max=<? if (isset($_GET['price_max'])) echo $_GET['price_max'];?>&address=<? if (isset($_GET['address'])) echo $_GET['address'];?>",
                      success: function(data) {
                          console.log('Успешно обновлены данные АРЕНДА таблиц ');
                          $('#arenda_block').html(data);
                      },
                      headers: {
                          'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                      },
                      error: function(data) {
                          console.log('Error: '+ data);
                      }
                  });
  
                  $.ajax({
                      type: "GET",
                      url: "{{ route('catalog') }}",
                      data: "view=prodaja&sort_price="+sort_price_val+"&sort_new="+sort_new_val+"&sort_area="+sort_area_val+""+
                            "&area=<?if (isset($_GET['area'])) echo $_GET['area'];?>&type_area=<?if (isset($_GET['type_area'])) echo $_GET['type_area'];?>&format_area=<? if (isset($_GET['format_area'])) echo $_GET['format_area'];?>"+
                            "&area_m2_min=<? if (isset($_GET['area_m2_min'])) echo $_GET['area_m2_min'];?>&area_m2_max=<? if (isset($_GET['area_m2_max'])) echo $_GET['area_m2_max'];?>"+
                            "&price_min=<? if (isset($_GET['price_min'])) echo $_GET['price_min'];?>&price_max=<? if (isset($_GET['price_max'])) echo $_GET['price_max'];?>&address=<? if (isset($_GET['address'])) echo $_GET['address'];?>",
                      success: function(data) {
                          console.log('Успешно обновлены данные ПРОДАЖА таблиц ');
                          $('#prodaja_block').html(data);
                      },
                      headers: {
                          'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                      },
                      error: function(data) {
                          console.log('Error: '+ data);
                      }
                  });
  
                  $.ajax({
                      type: "GET",
                      url: "{{ route('catalog') }}",
                      data: "view=bissnes&sort_price="+sort_price_val+"&sort_new="+sort_new_val+"&sort_area="+sort_area_val+""+
                              "&area=<?if (isset($_GET['area'])) echo $_GET['area'];?>&type_area=<?if (isset($_GET['type_area'])) echo $_GET['type_area'];?>&format_area=<? if (isset($_GET['format_area'])) echo $_GET['format_area'];?>"+
                              "&area_m2_min=<? if (isset($_GET['area_m2_min'])) echo $_GET['area_m2_min'];?>&area_m2_max=<? if (isset($_GET['area_m2_max'])) echo $_GET['area_m2_max'];?>"+
                              "&price_min=<? if (isset($_GET['price_min'])) echo $_GET['price_min'];?>&price_max=<? if (isset($_GET['price_max'])) echo $_GET['price_max'];?>&address=<? if (isset($_GET['address'])) echo $_GET['address'];?>",
                      success: function(data) {
                          console.log('Успешно обновлены данные БИЗНЕС таблиц ');
                          $('#bissnes_block').html(data);
                      },
                      headers: {
                          'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                      },
                      error: function(data) {
                          console.log('Error: '+ data);
                      }
                  });
  
                  $.ajax({
                      type: "GET",
                      url: "{{ route('catalog') }}",
                      data: "view=arendovannie&sort_price="+sort_price_val+"&sort_new="+sort_new_val+"&sort_area="+sort_area_val+""+
                              "&area=<?if (isset($_GET['area'])) echo $_GET['area'];?>&type_area=<?if (isset($_GET['type_area'])) echo $_GET['type_area'];?>&format_area=<? if (isset($_GET['format_area'])) echo $_GET['format_area'];?>"+
                              "&area_m2_min=<? if (isset($_GET['area_m2_min'])) echo $_GET['area_m2_min'];?>&area_m2_max=<? if (isset($_GET['area_m2_max'])) echo $_GET['area_m2_max'];?>"+
                              "&price_min=<? if (isset($_GET['price_min'])) echo $_GET['price_min'];?>&price_max=<? if (isset($_GET['price_max'])) echo $_GET['price_max'];?>&address=<? if (isset($_GET['address'])) echo $_GET['address'];?>",
                      success: function(data) {
                          console.log('Успешно обновлены данные таблиц ');
                          $('#arendovannie_block').html(data);
                          //.append(data);
                      },
                      headers: {
                          'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                      },
                      error: function(data) {
                          console.log('Error: '+ data);
                      }
                  });
  
              }
          );
      </script>
  @endsection
242debab8   thesolarwind   Первый коммит в п...
168
169
170
171
172
173
  @section('content')
      <section class="catalog">
          <div class="container">
              <div class="catalog__top top-catalog">
                  <div class="top-catalog__inner">
                      <h2 class="top-catalog__title title">Каталог коммерческой недвижимости</h2>
f615f47db   Андрей Ларионов   Страница каталога...
174
                      <div class="top-catalog__result">Найдено объектов по Вашему запросу: <span><?=$house_arenda->count()+$house_prodaja->count()+$house_bissnes->count()+$house_arendovannie->count(); ?></span></div>
242debab8   thesolarwind   Первый коммит в п...
175
176
177
178
179
180
                  </div>
                  <form class="top-catalog__sorts">
                      <div class="top-catalog__sort-group sort-group js_sort_group">
                          <input class="js_sort_group_input" type="hidden">
                          <div class="sort-group__current js_sort_group_current">Сначала дешевле</div>
                          <ul class="sort-group__list js_sort_group_list">
f615f47db   Андрей Ларионов   Страница каталога...
181
182
                              <li class="sort-price sort-group__item js_sort_group_item active" data-val="1">Сначала дешевле</li>
                              <li class="sort-price sort-group__item js_sort_group_item" data-val="2">Сначала дороже</li>
242debab8   thesolarwind   Первый коммит в п...
183
184
185
186
187
188
                          </ul>
                      </div>
                      <div class="top-catalog__sort-group sort-group js_sort_group">
                          <input class="js_sort_group_input" type="hidden">
                          <div class="sort-group__current js_sort_group_current">Сначала новые</div>
                          <ul class="sort-group__list js_sort_group_list">
f615f47db   Андрей Ларионов   Страница каталога...
189
190
                              <li class="sort-new sort-group__item js_sort_group_item active" data-val="1">Сначала новые</li>
                              <li class="sort-new sort-group__item js_sort_group_item" data-val="2">Сначала старые</li>
242debab8   thesolarwind   Первый коммит в п...
191
192
193
194
195
196
                          </ul>
                      </div>
                      <div class="top-catalog__sort-group sort-group sort-group--wide js_sort_group">
                          <input class="js_sort_group_input" type="hidden">
                          <div class="sort-group__current js_sort_group_current">Сначала с большей площадью</div>
                          <ul class="sort-group__list js_sort_group_list">
f615f47db   Андрей Ларионов   Страница каталога...
197
198
                              <li class="sort-area sort-group__item js_sort_group_item active" data-val="1">Сначала с большей площадью</li>
                              <li class="sort-area sort-group__item js_sort_group_item" data-val="2">Сначала с меньшей площадью</li>
242debab8   thesolarwind   Первый коммит в п...
199
200
201
202
203
                          </ul>
                      </div>
                  </form>
              </div>
          </div>
f615f47db   Андрей Ларионов   Страница каталога...
204
          <div class="complex__sliders">
242debab8   thesolarwind   Первый коммит в п...
205
206
207
208
209
210
211
212
              <section class="slider">
                  <div class="container">
                      <div class="slider__wrap">
                          <div class="slider__top">
                              <h2 class="slider__title title">Аренда торговых помещений</h2><a class="slider__more" href="#">Показать все объекты</a>
                              <div class="slider__control">
                                  <div class="swiper-button-prev">
                                      <svg width="10" height="17">
f615f47db   Андрей Ларионов   Страница каталога...
213
                                          <use xlink:href="{{ asset('images/sprite.svg#slider-arrow') }}"></use>
242debab8   thesolarwind   Первый коммит в п...
214
215
216
217
                                      </svg>
                                  </div>
                                  <div class="swiper-button-next">
                                      <svg width="10" height="17">
f615f47db   Андрей Ларионов   Страница каталога...
218
                                          <use xlink:href="{{ asset('images/sprite.svg#slider-arrow') }}"></use>
242debab8   thesolarwind   Первый коммит в п...
219
220
221
222
223
                                      </svg>
                                  </div>
                              </div>
                          </div>
                          <div class="slider__swiper swiper">
f615f47db   Андрей Ларионов   Страница каталога...
224
225
226
227
228
229
230
231
                              <div class="swiper-wrapper" id="arenda_block">
                                  @if ($house_arenda->count())
                                      @foreach ($house_arenda as $house1)
                                          @include('catalogs.elemhouse', ['house' => $house1])
                                      @endforeach
                                  @else
                                      <h3>Здесь пока что нет предложений</h3>
                              @endif
242debab8   thesolarwind   Первый коммит в п...
232
233
234
235
236
237
238
239
240
241
242
243
244
245
                              </div>
                          </div>
                          <div class="swiper-pagination"></div>
                      </div>
                  </div>
              </section>
              <section class="slider">
                  <div class="container">
                      <div class="slider__wrap">
                          <div class="slider__top">
                              <h2 class="slider__title title">Продажа торговых помещений</h2><a class="slider__more" href="#">Показать все объекты</a>
                              <div class="slider__control">
                                  <div class="swiper-button-prev">
                                      <svg width="10" height="17">
f615f47db   Андрей Ларионов   Страница каталога...
246
                                          <use xlink:href="{{ asset('images/sprite.svg#slider-arrow') }}"></use>
242debab8   thesolarwind   Первый коммит в п...
247
248
249
250
                                      </svg>
                                  </div>
                                  <div class="swiper-button-next">
                                      <svg width="10" height="17">
f615f47db   Андрей Ларионов   Страница каталога...
251
                                          <use xlink:href="{{ asset('images/sprite.svg#slider-arrow') }}"></use>
242debab8   thesolarwind   Первый коммит в п...
252
253
254
255
256
                                      </svg>
                                  </div>
                              </div>
                          </div>
                          <div class="slider__swiper swiper">
f615f47db   Андрей Ларионов   Страница каталога...
257
258
259
260
261
262
263
264
                              <div class="swiper-wrapper" id="prodaja_block">
                                  @if ($house_prodaja->count())
                                      @foreach ($house_prodaja as $house2)
                                          @include('catalogs.elemhouse', ['house' => $house2])
                                      @endforeach
                                  @else
                                      <h3>Здесь пока что нет предложений</h3>
                              @endif
242debab8   thesolarwind   Первый коммит в п...
265
266
267
268
269
270
271
272
273
274
275
276
277
278
                              </div>
                          </div>
                          <div class="swiper-pagination"></div>
                      </div>
                  </div>
              </section>
              <section class="slider">
                  <div class="container">
                      <div class="slider__wrap">
                          <div class="slider__top">
                              <h2 class="slider__title title">Арендный бизнес</h2><a class="slider__more" href="#">Показать все объекты</a>
                              <div class="slider__control">
                                  <div class="swiper-button-prev">
                                      <svg width="10" height="17">
f615f47db   Андрей Ларионов   Страница каталога...
279
                                          <use xlink:href="{{ asset('images/sprite.svg#slider-arrow') }}"></use>
242debab8   thesolarwind   Первый коммит в п...
280
281
282
283
                                      </svg>
                                  </div>
                                  <div class="swiper-button-next">
                                      <svg width="10" height="17">
f615f47db   Андрей Ларионов   Страница каталога...
284
                                          <use xlink:href="{{ asset('images/sprite.svg#slider-arrow') }}"></use>
242debab8   thesolarwind   Первый коммит в п...
285
286
287
288
289
                                      </svg>
                                  </div>
                              </div>
                          </div>
                          <div class="slider__swiper swiper">
f615f47db   Андрей Ларионов   Страница каталога...
290
291
292
293
294
295
296
297
                              <div class="swiper-wrapper" id="bissnes_block">
                                  @if ($house_bissnes->count())
                                      @foreach ($house_bissnes as $house3)
                                          @include('catalogs.elemhouse', ['house' => $house3])
                                      @endforeach
                                  @else
                                      <h3>Здесь пока что нет предложений</h3>
                              @endif
242debab8   thesolarwind   Первый коммит в п...
298
299
300
301
302
303
304
305
306
307
308
309
310
311
                              </div>
                          </div>
                          <div class="swiper-pagination"></div>
                      </div>
                  </div>
              </section>
              <section class="slider">
                  <div class="container">
                      <div class="slider__wrap">
                          <div class="slider__top">
                              <h2 class="slider__title title">Арендованные</h2><a class="slider__more" href="#">Показать все объекты</a>
                              <div class="slider__control">
                                  <div class="swiper-button-prev">
                                      <svg width="10" height="17">
f615f47db   Андрей Ларионов   Страница каталога...
312
                                          <use xlink:href="{{ asset('images/sprite.svg#slider-arrow') }}"></use>
242debab8   thesolarwind   Первый коммит в п...
313
314
315
316
                                      </svg>
                                  </div>
                                  <div class="swiper-button-next">
                                      <svg width="10" height="17">
f615f47db   Андрей Ларионов   Страница каталога...
317
                                          <use xlink:href="{{ asset('images/sprite.svg#slider-arrow') }}"></use>
242debab8   thesolarwind   Первый коммит в п...
318
319
320
321
322
                                      </svg>
                                  </div>
                              </div>
                          </div>
                          <div class="slider__swiper swiper">
f615f47db   Андрей Ларионов   Страница каталога...
323
324
325
326
327
328
329
330
                              <div class="swiper-wrapper" id="arendovannie_block">
                                  @if ($house_arendovannie->count())
                                      @foreach ($house_arendovannie as $house1)
                                          @include('catalogs.elemhouse', ['house' => $house1])
                                      @endforeach
                                  @else
                                      <h3>Здесь пока что нет предложений</h3>
                              @endif
242debab8   thesolarwind   Первый коммит в п...
331
332
333
334
335
336
337
338
339
340
341
342
343
344
                              </div>
                          </div>
                          <div class="swiper-pagination"></div>
                      </div>
                  </div>
              </section>
          </div>
      </section>
  @endsection
  
  @section('form_feedback')
      <!-- Форма обратной связи -->
      @include('form.form_feedback')
  @endsection