ok
Direktori : /proc/self/root/home2/selectio/www/bharath/application/views/admin/earnings/ |
Current File : //proc/self/root/home2/selectio/www/bharath/application/views/admin/earnings/completed_payouts.php |
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> <div class="box"> <div class="box-header with-border"> <div class="left"> <h3 class="box-title"><?php echo trans('completed_payouts'); ?></h3> </div> <div class="right"> <a href="<?php echo admin_url(); ?>add-payout" class="btn btn-success btn-add-new"> <i class="fa fa-plus"></i> <?php echo trans('add_payout'); ?> </a> </div> </div><!-- /.box-header --> <div class="box-body"> <div class="row"> <!-- include message block --> <div class="col-sm-12"> <?php $this->load->view('admin/includes/_messages'); ?> </div> </div> <div class="row"> <div class="col-sm-12"> <div class="table-responsive"> <table class="table table-bordered table-striped" role="grid"> <?php $this->load->view('admin/earnings/_filter_payouts'); ?> <thead> <tr role="row"> <th><?php echo trans('id'); ?></th> <th><?php echo trans('user_id'); ?></th> <th><?php echo trans('user'); ?></th> <th><?php echo trans('withdraw_method'); ?></th> <th><?php echo trans('withdraw_amount'); ?></th> <th><?php echo trans('status'); ?></th> <th><?php echo trans('date'); ?></th> <th class="max-width-120"><?php echo trans('options'); ?></th> </tr> </thead> <tbody> <?php foreach ($payouts as $item): ?> <tr> <td><?php echo $item->id; ?></td> <td><?php echo $item->user_id; ?></td> <td> <?php $user = get_user($item->user_id); if (!empty($user)):?> <div class="table-orders-user"> <a href="<?php echo generate_profile_url($user->slug); ?>" target="_blank"> <img src="<?php echo get_user_avatar($user); ?>" alt="buyer" class="img-responsive" style="height: 50px;"> <?php echo html_escape($user->username); ?> </a> </div> <?php endif; ?> </td> <td><?php echo trans($item->payout_method); ?></td> <td><?php echo price_formatted($item->amount, $item->currency); ?></td> <td> <?php if ($item->status == 1) { echo trans("completed"); } else { echo trans("pending"); } ?> </td> <td><?php echo formatted_date($item->created_at); ?></td> <td> <div class="dropdown"> <button class="btn bg-purple dropdown-toggle btn-select-option" type="button" data-toggle="dropdown"><?php echo trans('select_option'); ?> <span class="caret"></span> </button> <ul class="dropdown-menu options-dropdown"> <li> <a href="javascript:void(0)" onclick="delete_item('earnings_controller/delete_payout_post','<?php echo $item->id; ?>','<?php echo trans("confirm_delete"); ?>');"><i class="fa fa-trash option-icon"></i><?php echo trans('delete'); ?></a> </li> </ul> </div> </td> </tr> <?php endforeach; ?> </tbody> </table> <?php if (empty($payouts)): ?> <p class="text-center"> <?php echo trans("no_records_found"); ?> </p> <?php endif; ?> <div class="col-sm-12 table-ft"> <div class="row"> <div class="pull-right"> <?php echo $this->pagination->create_links(); ?> </div> </div> </div> </div> </div> </div> </div><!-- /.box-body --> </div>