1
0
mirror of https://github.com/Bubka/2FAuth.git synced 2025-03-22 03:18:01 +01:00
2FAuth/app/Http/Controllers/SinglePageController.php

20 lines
329 B
PHP

<?php
namespace App\Http\Controllers;
use App\Classes\Options;
use Illuminate\Http\Request;
class SinglePageController extends Controller
{
/**
* return the main view
* @return view
*/
public function index()
{
return view('landing')->with('appSettings', Options::get()->toJson());
}
}