mirror of
https://github.com/cydrobolt/polr.git
synced 2024-11-15 06:32:30 +01:00
17 lines
386 B
PHP
17 lines
386 B
PHP
<?php
|
|
namespace App\Http\Controllers;
|
|
use Illuminate\Http\Request;
|
|
use App\Helpers\CryptoHelper;
|
|
|
|
class IndexController extends Controller {
|
|
/**
|
|
* Show the index page.
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function showIndexPage(Request $request) {
|
|
$random_key = CryptoHelper::generateRandomHex(50);
|
|
return view('index', ['large' => true]);
|
|
}
|
|
}
|