Initial refactoring work
This commit is contained in:
16
app/Http/Controllers/UserHomeController.php
Normal file
16
app/Http/Controllers/UserHomeController.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
class UserHomeController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
public function home()
|
||||
{
|
||||
return View('home');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user