/
home
/
sjslayjy
/
public_html
/
jaggery
/
storage
/
framework
/
views
/
Upload File
HOME
<style> .btn{ height:27px !important; } .material-icons{ margin-top:0px !important; margin-bottom:0px !important; } </style> <?php $__env->startSection('content'); ?> <div class="container-fluid"> <div class="row"> <div class="col-lg-12"> <?php if(session()->has('success')): ?> <div class="alert alert-success"> <?php if(is_array(session()->get('success'))): ?> <ul> <?php $__currentLoopData = session()->get('success'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $message): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li><?php echo e($message); ?></li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> <?php else: ?> <?php echo e(session()->get('success')); ?> <?php endif; ?> </div> <?php endif; ?> <?php if(count($errors) > 0): ?> <?php if($errors->any()): ?> <div class="alert alert-danger" role="alert"> <?php echo e($errors->first()); ?> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <?php endif; ?> <?php endif; ?> </div> <div class="col-lg-12"> <a href="<?php echo e(route('store')); ?>" class="btn btn-primary ml-auto" style="width:10%;float:right;padding: 3px 0px 3px 0px;"><i class="material-icons">add</i>Add Store </a> </div> <div class="col-lg-12"> <div class="card"> <div class="card-header card-header-primary"> <h4 class="card-title ">Store List</h4> </div> <table class="table"> <thead> <tr> <th class="text-center">#</th> <!--<th>ID</th>--> <th>Store Name</th> <th>City</th> <th>Mobile</th> <th>Email</th> <th>Admin Share</th> <th>orders</th> <th>Action</th> </thead> <tbody> <?php if(count($city)>0): ?> <?php $i=1; ?> <?php $__currentLoopData = $city; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $cities): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td class="text-center"><?php echo e($i); ?></td> <td><?php echo e($cities->store_name); ?></td> <td><?php echo e($cities->city); ?></td> <td><?php echo e($cities->phone_number); ?></td> <td><?php echo e($cities->email); ?></td> <td><?php echo e($cities->admin_share); ?> %</td> <td><a href="<?php echo e(route('admin_store_orders', $cities->store_id)); ?>" rel="tooltip"> <i class="material-icons" style="color:green">layers</i></a></td> <td class="td-actions text-center"> <a href="<?php echo e(route('storedit', $cities->store_id)); ?>" button type="button" class="btn btn-success"> <i class="material-icons">edit</i> </button></a> <a href="<?php echo e(route('storedelete', $cities->store_id)); ?>" button type="button" class="btn btn-danger"> <i class="material-icons">close</i> </button></a> <a target="_blank" rel="noopener noreferrer" href="<?php echo e(route('secret-login', $cities->store_id)); ?>" style="padding-top:24px; background-color:black" button type="button" class="btn btn-success"> <i class="fa fa-user-secret fa-2x"></i> </button></a> </td> </tr> <?php $i++; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php else: ?> <tr> <td>No data found</td> </tr> <?php endif; ?> </tbody> </table> <div class="pagination justify-content-end" align="right" style="width:100%;float:right !important"><?php echo e($city->links()); ?></div> </div> </div> </div> </div> <div> </div> <?php $__env->stopSection(); ?> </div> <?php echo $__env->make('admin.layout.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/sjslayjy/public_html/jaggery/resources/views/admin/store/storeclist.blade.php ENDPATH**/ ?>