mirror of
https://repo.getmonero.org/AnonDev/xmrmemes.git
synced 2024-10-01 05:25:34 -04:00
17 lines
307 B
PHP
17 lines
307 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Artesaos\SEOTools\Facades\SEOTools;
|
|
|
|
class ContactController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
SEOTools::setTitle('Contact');
|
|
$data = [];
|
|
return view('contact', ['data' => $data]);
|
|
}
|
|
}
|