This repository has been archived on 2024-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
notdepressed/app/Http/Controllers/HomeController.php
2020-03-05 13:16:56 +07: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');
}
}