More changes

This commit is contained in:
ahwelp
2020-04-16 22:13:47 -03:00
parent 9548157f02
commit 5840d1338b
11 changed files with 148 additions and 102 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App\Core\Welcome;
use RR\Response as R;
class WelcomeController{
function welcome(){
R::json(Array('message' => \Lang::getString('welcome', 'welcome')))->send()->done();
}
}