index.php
29 lines
| 1 | <div class="wrap"> |
| 2 | |
| 3 | <?php |
| 4 | echo wp_kses_post( |
| 5 | \SureCart::notices()->render( |
| 6 | [ |
| 7 | 'name' => 'invoice_info', |
| 8 | 'title' => esc_html__( 'What are Invoices?', 'surecart' ), |
| 9 | 'text' => esc_html__( 'Invoices are similar to orders, but are used for payments and plan changes on active subscriptions. In the future you will be able to create an invoice to send out.', 'surecart' ), |
| 10 | ] |
| 11 | ) |
| 12 | ); |
| 13 | ?> |
| 14 | |
| 15 | <?php \SureCart::render( 'layouts/partials/admin-index-styles' ); ?> |
| 16 | |
| 17 | <?php |
| 18 | \SureCart::render( |
| 19 | 'layouts/partials/admin-index-header', |
| 20 | [ |
| 21 | 'title' => __( 'Invoices', 'surecart' ), |
| 22 | ] |
| 23 | ); |
| 24 | ?> |
| 25 | |
| 26 | <?php $table->display(); ?> |
| 27 | </div> |
| 28 | |
| 29 |