HomeController.php 593 B

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