Viewing file: a6892fc683df7cb91da2df04c42ef8bd.php (3.93 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startPush('css'); ?>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('frontend')); ?>/css/shopping-table.css">
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('frontend')); ?>/css/shop-listing2.css">
<link rel="stylesheet" type="text/css" href="<?php echo e(asset('frontend')); ?>/css/usersidemenu.css">
<style media="screen">
td {
font-size: 14px;
}
</style>
<?php $__env->stopPush(); ?>
<?php $__env->startSection('content'); ?>
<!--==== START MAIN ====-->
<section class="mt-3" id="shop-listing">
<div class="otrixcontainer">
<div class="row">
<div class="col-md-4 col-sm-12 col-xl-4 col-lg-4">
<div class="wrapper">
<?php echo $__env->make('frontend.partials.usersidebar', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
</div>
<div class="col-md-8 col-sm-12 col-xl-8 col-lg-8">
<div class="orderlist my-3 orderdetailstable">
<div class="table-responsive-sm">
<table class="table table-borderless">
<thead>
<tr>
<th scope="col" width="50%">Product</th>
<th scope="col" width="40%"><?php echo e(__('product_details')['price']); ?> </th>
<th scope="col" width="10%"><?php echo e(__('account')['action']); ?></th>
</tr>
</thead>
<tbody>
<?php $__empty_1 = true; $__currentLoopData = $wishlistData; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$data): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?>
<tr class="wishlist-tr">
<td>
<div class="d-flex justify-content-start align-items-center">
<img src="<?php echo e(asset('/uploads')); ?>/product/<?php echo e($data->image); ?>" alt="" class="order-detail-product-image">
<div class="flex-column mx-3 ">
<span class="product-name"> <?php echo e($data->productDescription->name); ?></span>
<div class="my-2 d-flex flex-row">
<div class="p-1 optiontitle "><?php echo e(__('product_details')['model']); ?>:</div>
<div class="p-1 text-bold optionlabel " ><?php echo e($data->model); ?></div>
</div>
</div>
</div>
</td>
<td class="mx-2"><span class="wishlist-price"><?php echo e(config('settingConfig.config_currency')); ?> <?php echo e(number_format($data->price,2)); ?></span> </td>
<td><a href="<?php echo e(url('product')); ?>/<?php echo e($data->productDescription->product_id); ?>" class="button-purple btn-sm "><?php echo e(__('account')['buy_now']); ?></a></td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?>
<tr colspan="5">
<h4 class="p-5 text-center text-black"><?php echo e(__('account')['wishlist_empty']); ?></h4>
</tr>
<?php endif; ?>
</tbody>
</table>
</div>
</div>
<?php echo e($wishlistData->appends(['name' => request()->name])->links()); ?>
</div>
</div>
</div>
</section>
<!--==== END MAIN ====-->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('frontend.layouts.app', ['class' => 'bg-white'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home2/smabmart/public_html/resources/views/frontend/user/wishlist.blade.php ENDPATH**/ ?>
|