index.php
18 lines
| 1 | <div class="wrap"> |
| 2 | <?php \SureCart::render( 'layouts/partials/admin-index-styles' ); ?> |
| 3 | <?php |
| 4 | \SureCart::render( |
| 5 | 'layouts/partials/admin-index-header', |
| 6 | [ |
| 7 | 'title' => __( 'Customers', 'surecart' ), |
| 8 | 'new_link' => \SureCart::getUrl()->edit( 'customers' ), |
| 9 | ] |
| 10 | ); |
| 11 | ?> |
| 12 | |
| 13 | <?php $table->search_form( __( 'Search Customers', 'surecart' ), 'sc-search-customers' ); ?> |
| 14 | <?php $table->display(); ?> |
| 15 | </div> |
| 16 | |
| 17 | |
| 18 |