Added redis to load

This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-04-12 09:50:27 -04:00
parent 9f9d1fa916
commit 5adc1b46bf
7 changed files with 124 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App\Controllers;
class WrenchApi extends BaseController
{
public function index()
{
$data['envID'] = getenv('ENV_ID');
$data['home_background'] = getenv('HOME_PAGE_BACKGROUND');
return view('welcome_message',$data);
}
}