Files
nl-mall-api/app/Http/Controllers/HomeController.php

26 lines
358 B
PHP
Raw Normal View History

<?php namespace App\Http\Controllers;
2014-11-24 19:33:07 -06:00
class HomeController extends Controller {
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
}
/**
* Show the application dashboard to the user.
*
* @return Response
*/
public function index()
{
2014-11-25 11:38:04 -06:00
return view('home');
}
}