<?php

namespace App\{module}\Controllers;

use Illuminate\Http\Request;

class IndexController extends {module}
{
    /**
     * Create a new controller instance.
     *
     * @return void
     */
    public function __construct()
    {
        $this->middleware('auth');
    }

    /**
     * Show the application dashboard.
     *
     * @return \Illuminate\Http\Response
     */
    public function index()
    {
        return view('{module}::Index.index');
    }
}
