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

21 lines
367 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');
2017-06-10 04:07:29 +08:00
}
2017-06-22 05:24:19 +08:00
public function test()
{
return view('frontend.dashboard');
}
2017-06-10 04:07:29 +08:00
}