phpvms/app/Http/Controllers/Frontend/DashboardController.php

17 lines
288 B
PHP
Raw Normal View History

2017-06-10 04:07:29 +08:00
<?php
namespace App\Http\Controllers\Frontend;
class DashboardController extends BaseController
{
/**
* Show the application dashboard.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return view('frontend/dashboard');
}
}