PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
dokan-lite
/
templates
/
withdraw
<?php /** * Dokan Withdraw Approved Request listing template * * @since 2.4 * * @package dokan */ ?> <table class="dokan-table dokan-table-striped"> <thead> <tr> <th><?php esc_html_e( 'Amount', 'dokan-lite' ); ?></th> <th><?php esc_html_e( 'Method', 'dokan-lite' ); ?></th> <th><?php esc_html_e( 'Date', 'dokan-lite' ); ?></th> </tr> </thead> <tbody> <?php foreach ( $requests as $row ) { ?> <tr> <td><?php echo wp_kses_post( wc_price( $row->amount ) ); ?></td> <td><?php echo esc_html( dokan_withdraw_get_method_title( $row->method ) ); ?></td> <td><?php echo esc_html( date_i18n( get_option( 'date_format' ), strtotime( $row->date ) ) ); ?></td> </tr> <?php } ?> </tbody> </table>
[+]
..
[-] cancelled-request-listing.php
[edit]
[-] header.php
[edit]
[-] approved-request-listing.php
[edit]
[-] status-listing.php
[edit]
[-] withdraw.php
[edit]
[-] request-form.php
[edit]
[-] pending-request-listing.php
[edit]