 
<?php $__env->startSection('content'); ?>

<div class="content-wrapper">
        <!-- Content Header (Page header) -->
        <section class="content-header">
          <h1 class="pull-left">Application User Details</h1>
    	<div class="pull-right"></div>
    </section>

    <!-- <?php foreach($query as $q): ?>
    <p><?php echo $q->id; ?></p>
    <?php endforeach; ?> --> 

     <table id="userdetail" class="table table-bordered table-striped">
                  				<thead>
                  				<tr>
								<th>Name</th>
								
                                
                               
								<!-- <th>Edit</th> -->
								<th style='width:150px'>Action</th>
								</tr>
								</thead>
								<tbody>
							<style>
						tr td table{
							text-align: left;
							}
							tr td table tr th{
							}
							</style>	
                    <?php foreach( $query as $ad ): ?>
                              
                 
                  <tr>
                  				
                  				<td><?php echo $ad->id; ?></td>
                  				<td></td>
								

							</tr>
							<?php endforeach; ?>
							</tbody>

<?php echo $query->links(); ?>
                  </table>
</div>

<script type="text/javascript">

$('#userdetail').DataTable({
	
    "pageLength":10,
    "ordering": false,
    "lengthMenu": [5, 10, 25, 50, 75, 100 ]
});
</script>
<?php $__env->stopSection(); ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.merchant-backend-layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>