<?php if(isset($category_id)): ?>
<?php
$meta_title = \App\Models\Category::find($category_id)->meta_title;
$meta_description = \App\Models\Category::find($category_id)->meta_description;
?>
<?php elseif(isset($brand_id)): ?>
<?php
$meta_title = \App\Models\Brand::find($brand_id)->meta_title;
$meta_description = \App\Models\Brand::find($brand_id)->meta_description;
?>
<?php else: ?>
<?php
$meta_title = get_setting('meta_title');
$meta_description = get_setting('meta_description');
?>
<?php endif; ?>
<?php $__env->startSection('meta_title'); ?><?php echo e($meta_title); ?><?php $__env->stopSection(); ?>
<?php $__env->startSection('meta_description'); ?><?php echo e($meta_description); ?><?php $__env->stopSection(); ?>
<?php $__env->startSection('meta'); ?>
<!-- Schema.org markup for Google+ -->
<meta itemprop="name" content="<?php echo e($meta_title); ?>">
<meta itemprop="description" content="<?php echo e($meta_description); ?>">
<!-- Twitter Card data -->
<meta name="twitter:title" content="<?php echo e($meta_title); ?>">
<meta name="twitter:description" content="<?php echo e($meta_description); ?>">
<!-- Open Graph data -->
<meta property="og:title" content="<?php echo e($meta_title); ?>" />
<meta property="og:description" content="<?php echo e($meta_description); ?>" />
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<!-- Breadcrumb -->
<section class="mb-4 pt-4">
<div class="container">
<div class="row">
<div class="col-lg-6 text-lg-left text-center">
<h1 class="fw-700 fs-20 fs-md-24 text-dark"><?php echo e(translate('All Auction Products')); ?></h1>
</div>
<div class="col-lg-6">
<ul class="breadcrumb justify-content-center justify-content-lg-end bg-transparent p-0">
<li class="breadcrumb-item has-transition opacity-60 hov-opacity-80">
<a class="text-reset" href="<?php echo e(route('home')); ?>"><?php echo e(translate('Home')); ?></a>
</li>
<li class="text-dark fw-600 breadcrumb-item">
<span class="text-dark"><?php echo e(translate('All Auction Products')); ?></span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- All Auction Products -->
<section class="mb-4 pt-3">
<div class="container">
<div class="bg-white px-3 pt-3">
<div class="row gutters-16 row-cols-xxl-5 row-cols-lg-4 row-cols-md-3 row-cols-2 border-top border-left">
<?php $__currentLoopData = $products; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="col text-center border-right border-bottom hov-scale-img has-transition hov-shadow-out z-1">
<div class="position-relative">
<a href="<?php echo e(route('auction-product', $product->slug)); ?>" class="d-block p-3">
<img class="lazyload h-sm-120px h-md-210px img-fit mx-auto has-transition"
src="<?php echo e(static_asset('assets/img/placeholder.jpg')); ?>"
data-src="<?php echo e(uploaded_asset($product->thumbnail_img)); ?>"
alt="<?php echo e($product->getTranslation('name')); ?>" title="<?php echo e($product->getTranslation('name')); ?>"
onerror="this.onerror=null;this.src='<?php echo e(static_asset('assets/img/placeholder.jpg')); ?>';">
</a>
</div>
<div class="p-md-3 p-2 text-center">
<h3 class="fw-400 fs-14 text-truncate-2 lh-1-4 mb-0 h-35px mb-2">
<a href="<?php echo e(route('auction-product', $product->slug)); ?>" class="d-block text-reset hov-text-primary"
title="<?php echo e($product->getTranslation('name')); ?>"><?php echo e($product->getTranslation('name')); ?></a>
</h3>
<div class="fs-14">
<span class="fw-700 text-primary"><?php echo e(single_price($product->starting_bid)); ?></span>
</div>
</div>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
<div class="aiz-pagination aiz-pagination-center mt-4">
<?php echo e($products->appends(request()->input())->links()); ?>
</div>
</div>
</div>
</section>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('script'); ?>
<script type="text/javascript">
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('frontend.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/devs.lapieza.net/resources/views/auction/frontend/all_auction_products.blade.php ENDPATH**/ ?> |