mirror of
https://repo.getmonero.org/AnonDev/xmrmemes.git
synced 2024-12-22 14:15:08 -05:00
821fb9b1ed
Update the payment code so everything is working now Improve DB structure Improve design Add API Validate XMR Address upon registration And Much More... Still Need to work on: - SEO - Dropdown in menu (bug, not dropping down)
15 lines
228 B
PHP
15 lines
228 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class ContactController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$data = [];
|
|
return view('contact', ['data' => $data]);
|
|
}
|
|
}
|