phpvms/app/Http/Controllers/HomeController.php

18 lines
279 B
PHP
Raw Normal View History

2017-06-09 02:28:26 +08:00
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class HomeController extends Controller
{
2017-06-10 04:07:29 +08:00
/**
* Show the application dashboard.
* @return \Illuminate\Http\Response
*/
2017-06-09 02:28:26 +08:00
public function index()
{
return view('home');
}
}