@@ -81,6 +81,9 @@ class Home extends Controller
public function test()
{
+ $rootPath = base_path();
+ echo $rootPath;
+ exit;
$sql = request()->input('sql', 'select * from bot_messages order by id desc limit 0,10;');
$res = DB::select($sql);
return $this->success($res);