You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
404 B

3 years ago
  1. <?php
  2. namespace App\Http;
  3. use Rakit\Validation\Validator;
  4. use App\Flight\FlightAbstract;
  5. use App\Models\Bucket;
  6. use Carbon\Carbon;
  7. /**
  8. *
  9. *
  10. *
  11. *
  12. * @author Björn Hase
  13. * @link https://gitea.tentakelfabrik.de/mITSM/feedback GitHub Repository
  14. *
  15. *
  16. */
  17. class Home extends FlightAbstract
  18. {
  19. public function indexAction()
  20. {
  21. $this->app->render('index', [
  22. ]);
  23. }
  24. }