MarketController.class.php 274 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Admin\Controller;
  3. class MarketController extends AdminController
  4. {
  5. private $Model;
  6. public function __construct()
  7. {
  8. parent::__construct();
  9. }
  10. public function index(){
  11. $this->display();
  12. }
  13. public function edit(){
  14. $this->display();
  15. }
  16. }
  17. ?>