2FAuth/app/Http/Controllers/SinglePageController.php

46 lines
1.2 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Services\SettingService;
use Illuminate\Support\Facades\App;
class SinglePageController extends Controller
{
/**
* The Settings Service instance.
*/
protected SettingService $settingService;
/**
* Create a new controller instance.
*
*/
public function __construct(SettingService $settingService)
{
$this->settingService = $settingService;
}
/**
* return the main view
* @return view
*/
public function index()
{
return view('landing')->with([
'appSettings' => $this->settingService->all()->toJson(),
'appConfig' => collect([
'proxyAuth' => config("auth.defaults.guard") === 'reverse-proxy-guard' ? true : false,
'proxyLogoutUrl' => config("2fauth.config.proxyLogoutUrl") ? config("2fauth.config.proxyLogoutUrl") : false,
])->toJson(),
'lang' => App::currentLocale(),
'isDemoApp' => config("2fauth.config.isDemoApp") ? 'true' : 'false',
'isTestingApp' => config("2fauth.config.isTestingApp") ? 'true' : 'false',
'locales' => collect(config("2fauth.locales"))->toJson()
]);
}
}