index.php
29 lines
| 1 | <div class="wrap"> |
| 2 | <?php |
| 3 | \SureCart::render( |
| 4 | 'layouts/partials/admin-index-header', |
| 5 | [ 'title' => __( 'Subscription Saver', 'surecart' ) ] |
| 6 | ); |
| 7 | ?> |
| 8 | |
| 9 | <?php |
| 10 | if ( ! $enabled ) : |
| 11 | \SureCart::render( |
| 12 | 'admin/cancellation-insights/cta-banner', |
| 13 | ); |
| 14 | endif; |
| 15 | ?> |
| 16 | |
| 17 | <?php if ( $enabled ) : ?> |
| 18 | <div id="app"></div> |
| 19 | <?php endif; ?> |
| 20 | |
| 21 | <?php |
| 22 | \SureCart::render( |
| 23 | 'layouts/partials/admin-index-header', |
| 24 | [ 'title' => __( 'Cancellation Attempts', 'surecart' ) ] |
| 25 | ); |
| 26 | ?> |
| 27 | <?php $table->display(); ?> |
| 28 | </div> |
| 29 |