Finish SEO

This commit is contained in:
dev 2021-08-06 14:01:16 -07:00
parent d5a3175bea
commit 58fb2d2834
9 changed files with 159 additions and 12 deletions

View file

@ -3,11 +3,13 @@
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]);
}