HovedprosjektWebApp/app/Http/Controllers/HomeController.php
Alex Thomassen c7b6d17b93
Add user registration and login
Add blog posts table, model and form request
2020-03-03 13:32:40 +01:00

29 lines
467 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class HomeController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
}
/**
* Show the application dashboard.
*
* @return \Illuminate\Contracts\Support\Renderable
*/
public function index()
{
return view('home');
}
}