My beer compendium
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
467 B

3 years ago
  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\Request;
  4. class HomeController extends Controller
  5. {
  6. /**
  7. * Create a new controller instance.
  8. *
  9. * @return void
  10. */
  11. public function __construct()
  12. {
  13. $this->middleware('auth');
  14. }
  15. /**
  16. * Show the application dashboard.
  17. *
  18. * @return \Illuminate\Contracts\Support\Renderable
  19. */
  20. public function index()
  21. {
  22. return view('home');
  23. }
  24. }