Edit File: cd4778e9be702feb3985c3c7dbffe2ac1e67feec.php
<div class="position-relative"> <div class="table_loader" > <?php echo e(awtTrans('جاري التحميل')); ?> </div> <table class="table " id="tab"> <thead> <tr> <th> <label class="container-checkbox"> <input type="checkbox" value="value1" name="name1" id="checkedAll"> <span class="checkmark"></span> </label> </th> <th><?php echo e(awtTrans('التاريخ')); ?></th> <th><?php echo e(awtTrans('صوره الايقونة')); ?></th> <th><?php echo e(awtTrans('اسم المتجر')); ?></th> <th><?php echo e(awtTrans('رقم هاتف المستخدم')); ?></th> <th><?php echo e(awtTrans('عرض المنيو')); ?></th> <th><?php echo e(awtTrans('عرض الاضافات')); ?></th> <th><?php echo e(awtTrans('عرض المنتجات')); ?></th> <th><?php echo e(awtTrans('التحكم')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $rows; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr class="delete_row"> <td class="text-center"> <label class="container-checkbox"> <input type="checkbox" class="checkSingle" id="<?php echo e($row->id); ?>"> <span class="checkmark"></span> </label> </td> <td><?php echo e(\Carbon\Carbon::parse($row->created_at)->format('d/m/Y')); ?></td> <td><img src="<?php echo e(asset('assets/uploads/stores/'.$row->store->icon)); ?>" width="50px" height="50px" alt=""></td> <td><?php echo e($row->store->name); ?></td> <td><?php echo e($row->phone); ?></td> <td><a class="d-flex font-medium-1" href="<?php echo e(url('admin/stores/menus/' .$row->store->id )); ?>"><?php echo e(awtTrans('عرض')); ?></a></td> <td><a class="d-flex font-medium-1" href="<?php echo e(url('admin/stores/additives/' .$row->store->id )); ?>"><?php echo e(awtTrans('عرض')); ?></a></td> <td><a class="d-flex font-medium-1" href="<?php echo e(url('admin/stores-products/' .$row->store->id )); ?>"><?php echo e(awtTrans('عرض')); ?></a></td> <td> <div class="dropdown d-flex"> <a href="#" class="dropdown-toggle" id="folder" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></a> <div style="z-index: 100000" class="dropdown-menu dropdown-menu-right" aria-labelledby="folder" x-placement="bottom-end" style="position: absolute; will-change: transform; top: 0px; left: 0px; transform: translate3d(-93px, 22px, 0px);"> <a class="dropdown-item d-flex font-medium-1" href="<?php echo e(url('admin/stores/dates/' .$row->store->id )); ?>"><i class="font-medium-3 feather icon-eye mr-50"></i> <?php echo e($row->store->timings->count() > 0 ? awtTrans('تعديل مواقيت العمل') : awtTrans('اضافة مواقيت العمل ')); ?></a> <!--<a class="dropdown-item d-flex font-medium-1" href="<?php echo e(url('admin/stores/offer/' .$row->store->id )); ?>"><i class="font-medium-3 feather icon-eye mr-50"></i> <?php echo e($row->store->offer == 'true' ? awtTrans('تعديل عرض توصيل') : awtTrans('اضافة عرض توصيل')); ?></a>--> <a class="dropdown-item d-flex font-medium-1" href="<?php echo e(url('admin/stores/branches/' .$row->store->id )); ?>"><i class="font-medium-3 feather icon-eye mr-50"></i> <?php echo e(awtTrans('عرض الافرع')); ?></a> <span data-toggle="modal" data-target="#notify" class="dropdown-item d-flex font-medium-1 mail" data-id="<?php echo e($row->id); ?>" data-url="<?php echo e(url('admins/stores/notify')); ?>"><i class="font-medium-3 feather icon-mail mr-50"></i><?php echo e(awtTrans('ارسال اشعار')); ?></span> <a class="dropdown-item d-flex font-medium-1" href="<?php echo e(route('admin.stores.show', ['id' => $row->store->id])); ?>"><i class="font-medium-3 feather icon-eye mr-50"></i> <?php echo e(awtTrans('عرض المتجر')); ?></a> <a class="dropdown-item d-flex font-medium-1" href="<?php echo e(route('admin.stores.edit', ['id' => $row->store->id])); ?>"><i class="font-medium-3 feather icon-edit mr-50"></i> <?php echo e(awtTrans('تعديل')); ?></a> <?php if($row->store->orders()->where('status', '!=' , 'finished')->count() == 0): ?> <a class="delete-row dropdown-item d-flex font-medium-1 text-danger" href="#" data-url="<?php echo e(url('admin/stores/' . $row->id)); ?>"><i class="font-medium-3 feather icon-trash mr-50"></i> <?php echo e(awtTrans('حذف')); ?></a> <?php endif; ?> </div> </div> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php if($rows->count() == 0): ?> <div class="d-flex flex-column w-100 align-center mt-4"> <img src="http://127.0.0.1:8000/admin/app-assets/images/pages/404.png" alt=""> <span class="mt-2" style="font-family: cairo"><?php echo e(awtTrans('لا يوجد نتائج مطابقة')); ?></span> </div> <?php endif; ?> </div> <?php if($rows->count() > 0 && $rows instanceof \Illuminate\Pagination\AbstractPaginator ): ?> <div class="d-flex justify-content-center mt-3"> <?php echo e($rows->links()); ?> </div> <?php endif; ?> <?php /**PATH /home/wwineerc/public_html/resources/views/admin/stores/accepted_table.blade.php ENDPATH**/ ?>
Back to File Manager