mirror of
https://github.com/fergalmoran/OpnForm.git
synced 2026-01-11 19:14:25 +00:00
* SEO social meta * Small wording changes Co-authored-by: Julien Nahum <jhumanj@MacBook-Pro-de-Julien.local>
21 lines
400 B
PHP
21 lines
400 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Service\SeoMetaResolver;
|
|
use Illuminate\Http\Request;
|
|
class SpaController extends Controller
|
|
{
|
|
/**
|
|
* Get the SPA view.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function __invoke(Request $request)
|
|
{
|
|
return view('spa',[
|
|
'meta' => (new SeoMetaResolver($request))->getMetas(),
|
|
]);
|
|
}
|
|
}
|