14 lines
211 B
PHP
Executable File
14 lines
211 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Core\Welcome;
|
|
|
|
use RR\Response as R;
|
|
|
|
class WelcomeController{
|
|
|
|
function welcome(){
|
|
R::json(Array('message' => \Lang::getString('welcome', 'welcome')))->send()->done();
|
|
}
|
|
|
|
}
|