This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-04-15 21:39:27 -04:00
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();
}
}