summaryrefslogtreecommitdiff
path: root/app/Http/Controllers/HomeController.php
blob: cd8a55bd80f74946cb91bbeee288324168c9686f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class HomeController extends Controller
{
    public function index()
    {
        return view('home');
    }
}