Blame view

resources/views/category_ajax.blade.php 543 Bytes
e861ef0f4   Андрей Ларионов   Результативная ча...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  @foreach ($category as $cat)
      <div class="bloks-item">
          <a href="{{ route('catalog_detail', $cat->id) }}">
              <div class="item-wrapper">
                  <div class="blocks__item-text">
                      <h3 class="item-title">{{$cat->name}}</h3>
                      <div class="svg-wrapper">
                      </div>
                  </div>
                  <img class="bloks__item-img" width="150px" src="{{asset(Storage::url($cat->image))}}" alt="{{$cat->name}}">
              </div>
          </a>
      </div>
  @endforeach