phpvms/app/Http/Controllers/Frontend/DashboardController.php
2017-06-09 15:07:29 -05:00

17 lines
288 B
PHP

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