Airports Model/Controller

This commit is contained in:
Your Name
2021-08-04 16:38:31 +02:00
parent 9db5f1b5e3
commit c84c826c3f
14 changed files with 309 additions and 3 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php namespace GermanAirlinesVa\Routes\Controllers;
use Backend\Classes\Controller;
use BackendMenu;
class Airport extends Controller
{
public $implement = ['Backend\Behaviors\ListController', 'Backend\Behaviors\FormController'];
public $listConfig = 'config_list.yaml';
public $formConfig = 'config_form.yaml';
public function __construct()
{
parent::__construct();
}
}