Home Controller
Replaced the HomeController with the following code.
Note: Please use the copy button to copy the source code.
class HomeController extends Controller
{
public function __construct()
{
$this->middleware('auth');
}
public function index()
{
return view('home');
}
}