gdoo/app/Gdoo/Index/Controllers/DemoController.php

18 lines
286 B
PHP

<?php namespace Gdoo\Index\Controllers;
use DB;
use URL;
use Request;
class DemoController extends Controller
{
#[Attribute(Attribute::TARGET_FUNCTION)]
public function vouchAction()
{
return $this->display();
}
public function helloAction()
{
}
}