mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-01-08 07:21:08 +01:00
41 lines
874 B
PHP
41 lines
874 B
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(),
|
|
'lang' => App::currentLocale(),
|
|
'isDemoApp' => config("2fauth.config.isDemoApp") ? 'true' : 'false',
|
|
'locales' => collect(config("2fauth.locales"))->toJson(),
|
|
]);
|
|
}
|
|
}
|