mirror of
https://repo.getmonero.org/AnonDev/xmrmemes.git
synced 2025-05-13 15:02:11 -04:00
Initial Commit
This commit is contained in:
commit
cc2af611e1
148 changed files with 54234 additions and 0 deletions
18
app/Http/Controllers/AboutController.php
Normal file
18
app/Http/Controllers/AboutController.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use chillerlan\QRCode\{QRCode, QROptions};
|
||||
|
||||
class AboutController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$data = [
|
||||
'address' => config('app.xmr_tip_address'),
|
||||
'qr' => (new QRCode)->render(config('app.xmr_tip_address')),
|
||||
];
|
||||
return view('about', ['data' => $data]);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue