File "HomeController.stub"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/laravel/ui/src/Auth/stubs/controllers/HomeController.stub
File size: 476 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace {{namespace}}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');
    }
}