8 lines
320 B
PHP
Executable file
8 lines
320 B
PHP
Executable file
<?php
|
|
require_once __DIR__ . '/core/application.php';
|
|
require __DIR__ . '/core/controllers/payment-methods.php';
|
|
|
|
require __DIR__ . '/core/views/common/header.php';
|
|
require __DIR__ . '/core/views/common/navbar.php';
|
|
require __DIR__ . '/core/views/payment-methods.php';
|
|
require __DIR__ . '/core/views/common/footer.php';
|