| Server IP : 162.214.74.102 / Your IP : 216.73.216.139 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/public_html/lrsys_projetos/sopizzas/application/views/superadmin/ |
Upload File : |
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>Manage Payment</h1>
</section>
<!-- Main content -->
<section class="content">
<div class="nav-tabs-custom">
<div class="tab-content no-padding">
<div id="home" class="tab-pane fade in active">
<div class="box-body mctop30">
<div class="col-md-12 col-xs-12">
<div class="col-md-2 custom-padding-0">
<label style="float: left; margin-top: 6px;">Show</label>
<div class="input-group col-md-8" style="padding-left: 6px;">
<select onchange="getData('0','99',this.value)" class="fs_input select2">
<option value="5" <?=ROW_PER_PAGE==5?'selected':''?> >5</option><option value="10" <?=ROW_PER_PAGE==10?'selected':''?> >10</option><option value="15" <?=ROW_PER_PAGE==15?'selected':''?> >15</option><option value="20" <?=ROW_PER_PAGE==20?'selected':''?> >20</option>
</select>
<span class="input-group-addon" style="padding: 6px 4px;">Per Page</span>
</div>
</div>
<div class="col-md-5 col-sm-6 col-xs-12">
<div class="form-group">
<select onchange="getData('0','99','<?=ROW_PER_PAGE?>',this.value)" class="fs_input select2">
<option value="">Select Restaurant Name</option>
<option value="0" value="">All</option>
<?php
foreach($RestaurantList as $row) { ?>
<option value="<?php echo $row->restaurant_id; ?>" ><?php echo $row->restaurant_name ?></option>';
<?php } ?>
</select>
</div>
</div>
<div class="col-md-5 col-sm-12 col-xs-12 margintop10 paddingright0">
<div class="form-group">
<select onchange="getData('0',this.value)" class="form-control select2">
<option value="99">Sort By</option>
<optgroup label="Others">
<option value="1"> Customer Name A to Z</option>
<option value="2"> Customer Name Z to A</option>
<option value="3"> Restaurant Name A to Z</option>
<option value="4"> Restaurant Name Z to A</option>
<option value="5"> Total Price 0 to 9</option>
<option value="6"> Total Price 9 to 0</option>
</optgroup>
</select>
</div>
</div>
</div>
<div class="box-body" id="customers">
<div class="clearfix"></div>
<div class="table-responsive">
</div>
<!-- /.table-responsive -->
</div>
</div>
</div>
</div>
</div>
<!-- ./tab section -->
<div class="clearfix"></div>
</section>
<!-- /.content -->
</div>