Basic vue frontend with auth

This commit is contained in:
Bubka
2019-05-28 17:29:15 +02:00
parent e7695b64bc
commit 24588e5d26
16 changed files with 65259 additions and 129 deletions

View File

@ -0,0 +1,18 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class SinglePageController extends Controller
{
/**
* return the main view
* @return view
*/
public function index()
{
return view("landing");
}
}