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