HomeController.php 538 B

123456789101112131415161718192021222324
  1. <?php namespace App\Http\Controllers;
  2. class HomeController {
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Home Controller
  6. |--------------------------------------------------------------------------
  7. |
  8. | Controller methods are called when a request enters the application
  9. | with their assigned URI. The URI a method responds to may be set
  10. | via simple annotations. Here is an example to get you started!
  11. |
  12. */
  13. /**
  14. * @Get("/")
  15. */
  16. public function index()
  17. {
  18. return view('hello');
  19. }
  20. }