This commit is contained in:
tokslaw7
2023-04-16 01:27:17 +00:00
parent fc4e275bcf
commit 9b589c6356
3 changed files with 9 additions and 1 deletions
+6
View File
@@ -10,4 +10,10 @@ class Home extends BaseController
$data['home_background'] = getenv('HOME_PAGE_BACKGROUND');
return view('welcome_message',$data);
}
public function test()
{
echo "hello world, from home controller";
phpinfo();
}
}