@extends('frontend.layouts.mobile') @php $show_prices = false; $banner = null; $video_tag = ''; if(isset($data['category'])) { if(isset($data['category']->meta_title)) $title = $data['category']->meta_title; else $title = $data['category']->name . ' - ' . app_name(); if($data['category']->do_index == 'N' || $data['category']->status == 'N') $no_index = 'NOINDEX'; if($data['category']->show_prices == 'Y') $show_prices = true; if($show_prices && $data['category']->banner_id > 0) { $banner = \App\Models\Banner::getBanner($data['category']->banner_id); } if(trim($data['category']->video_link) != null) { if($data['category']->video_site == 'YouTube') { $video_tag = '
'; } else { $video_tag = '
'; } } } else { $title = ''; } @endphp @if(isset($no_index)) @push('head-area') @endpush @endif @if($data['listing_type'] == 'products_search') @section('title', 'Search Results for '.request()->input('s')) @elseif(isset($data['category'])) @php $title = trim($data['category']->meta_title); if($title != null && $title != 'NULL') $title = $data['category']->meta_title; else $title = $data['category']->name . ' - ' . app_name(); @endphp @section('title', $title) @if(isset($data['category']->meta_description) && trim($data['category']->meta_description) != null && $data['category']->meta_description != 'NULL') @section('meta_description', $data['category']->meta_description) @section('meta_keywords', $data['category']->meta_keywords) @endif @endif @if(isset($data['category']) && $data['category']->is_canonical == 'Y') @php if($data['category']->canonical_url != '') $url = $data['category']->canonical_url; else $url = URL::to( '/' . $data['category']->slug); @endphp @php $title = trim($data['category']->meta_title); if($title != null && $title != 'NULL') $title = $data['category']->meta_title; else $title = $data['category']->name . ' - ' . app_name(); $data['category_products'] = $data['category']->products()->where('status', 'Y')->where('type', '!=', 'child')->take(5)->get(); foreach($data['category_products'] as $category_products){ if($category_products->type == 'variation'){ $range = \App\Models\Product::getVariationDiscoutedPriceRange($category_products->id); $category_products->max = $range['max']; $category_products->min = $range['min']; $category_products->avg = $range['avg']; } } @endphp @push('head-area') @endpush @endif @push('schema') @component('frontend.layouts.schema') @if($data['listing_type'] !== 'products_search') { "@context": "https://schema.org/", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.germedusa.com/" }, @if(count($data['category']->subcategories) > 0),@endif @php $counter = 2; @endphp @foreach ($data['schema_breadcrumbs'] as $key => $schema_breadcrumbs) { "@type": "ListItem", "position": {{ $counter }}, "name": "{{ @$schema_breadcrumbs[0]['name'] }}", "item": "{{ @$schema_breadcrumbs[0]['url'] }}" } @if($key < count($data['schema_breadcrumbs']) -1) , @endif @php $counter++; @endphp @endforeach ] } @endif @endcomponent @endpush @section('content') {{--

@if($data['listing_type'] == 'products_search') Search Results for "{{ request()->input('s') }}" @elseif(isset($data['category'])) {{ $data['category']->name }} @endif

Showing {{ $data['products']->firstItem() }} to {{ $data['products']->lastItem() }} of total {{ $data['products']->total() }} results

{!! Form::open(array('route' => 'frontend.set-listing-limit', 'method' => 'POST', 'class' => 'mb-0')) !!} {!! Form::select('listing_limit', ['15' => '15', '30' => '30', '45' => '45', '60' => '60', '999' => 'All'] ,$data['listing_limit'] ,['class'=>'listing-limit', 'onchange' => 'this.form.submit();']) !!} {!! Form::close() !!}
@if(isset($data['category']))
{!! $data['category']->description !!}
@endif {!! $video_tag !!}
@if($banner)
{!! $banner !!}
@endif @if(isset($data['products'])) @foreach($data['products'] as $product) {!! \App\Models\Product::productBlock($product, 'product-list', true, $show_prices) !!} @endforeach @else

Sorry!, no products found.

@endif
--}}

@if($data['listing_type'] == 'products_search') Search Results for "{{ request()->input('s') }}" @elseif(isset($data['category'])) {{ $data['category']->name }} @endif

@if(isset($data['category']))
{!! $data['category']->short_description ? $data['category']->short_description : $data['category']->description !!}
{!! $video_tag !!} @endif @if($data['products'])
Showing {{ $data['products']->firstItem() }} to {{ $data['products']->lastItem() }} of total {{ $data['products']->total() }} results
@endif
@foreach($data['products'] as $product) @php $path = 'up_data/products/images/thumbnails/' . $product->image; @endphp @push('head-area') @endpush {!! \App\Models\Product::productBlock($product, 'mobile') !!} @endforeach
@if($data['products'])
{!! $data['products']->appends( request()->except('page') )->links() !!}
@endif @if(isset($data['category']) && $data['category']->short_description !== null)
{!! $data['category']->description !!}
@endif
@push('before-scripts') @endpush @endsection