13 lines
265 B
PHP
13 lines
265 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
class Providers extends BaseController {
|
|
|
|
public function index() {
|
|
$data = array();
|
|
$this->renderExtPage('providers', $data);
|
|
}
|
|
//--------------------------------------------------------------------
|
|
}
|