MOON
Server: Apache
System: Linux host.sunshiene.com 4.18.0-553.121.1.el8_10.x86_64 #1 SMP Thu Apr 30 09:06:34 EDT 2026 x86_64
User: clientsoftwares (1005)
PHP: 8.1.34
Disabled: system, exec, mail, shell_exec, passthru, popen, proc_open, pcntl_exec, dl, ini_alter, ini_restore, symlink, link, chown, posix_kill
Upload Files
File: /home/clientsoftwares/public_html/software/loan/application/views/setting/taxcode_list.php

<div class="table-responsive">
     <div style="width: 90%; margin: auto; text-align: right;">
    <?php echo anchor(current_lang().'/setting/taxcode_registration/',  lang('taxcode_register'),'class="btn btn-primary"'); ?>
</div>
    <table class="table table-bordered table-striped">
        <thead>
            <tr>
                <th><?php echo lang('taxcode'); ?></th>
                <th><?php echo lang('taxdescription'); ?></th>
                <th><?php echo lang('taxpercent'); ?></th>
                <th><?php echo lang('index_action_th'); ?></th>
                
            </tr>

        </thead>
        <tbody>
            <?php foreach ($taxlist as $key => $value) { ?>

                <tr>
                     
                    <td><?php echo $value->code; ?></td>
                    <td><?php echo $value->description; ?></td>
                    <td><?php echo $value->rate; ?></td>
                    <td><?php echo anchor(current_lang() . "/setting/taxcode_registration/" . encode_id($value->id), ' <i class="fa fa-edit"></i> ' . lang('button_edit')); ?></td>
                    
                    
                </tr>
            <?php } ?>
        </tbody>

    </table>
   
 
    
</div>