index.php
28 lines
| 1 | <div class="wrap"> |
| 2 | |
| 3 | <?php |
| 4 | \SureCart::render( 'layouts/partials/admin-index-styles' ); |
| 5 | ?> |
| 6 | |
| 7 | <?php |
| 8 | \SureCart::render( |
| 9 | 'layouts/partials/admin-index-header', |
| 10 | [ 'title' => __( 'Subscription Insights', 'surecart' ) ] |
| 11 | ); |
| 12 | ?> |
| 13 | |
| 14 | <div id="app"></div> |
| 15 | |
| 16 | <?php |
| 17 | \SureCart::render( |
| 18 | 'layouts/partials/admin-index-header', |
| 19 | [ |
| 20 | 'title' => __( 'Subscriptions', 'surecart' ), |
| 21 | ] |
| 22 | ); |
| 23 | ?> |
| 24 | |
| 25 | <?php $table->search_form( __( 'Search Subscriptions', 'surecart' ), 'sc-search-subscriptions' ); ?> |
| 26 | <?php $table->display(); ?> |
| 27 | </div> |
| 28 |