Env label added

This commit is contained in:
2023-03-16 20:54:46 -04:00
parent 0e3a64cee8
commit dd9f305b96
3 changed files with 11 additions and 2 deletions
+2 -1
View File
@@ -6,6 +6,7 @@ class Home extends BaseController
{
public function index()
{
return view('welcome_message');
$data['envID'] = getenv('ENV_ID');
return view('welcome_message',$data);
}
}