home.blade.php 727 B

1234567891011121314151617181920212223242526272829
  1. @layout('docs::template')
  2. @section('content')
  3. <h3>Learn the terrain.</h3>
  4. <p>
  5. You've landed yourself on our <code>default</code> home page. The route that
  6. is generating this page lives at:
  7. </p>
  8. <pre>APP_PATH/routes.php</pre>
  9. <p>And the view sitting before you can be found at:</p>
  10. <pre>APP_PATH/views/home/index.php</pre>
  11. <h3>Create something beautiful.</h3>
  12. <p>
  13. Now that you're up and running, it's time to start creating!
  14. Here are some links to help you get started:
  15. </p>
  16. <ul>
  17. <li><a href="http://laravel.com">Official Website</a></li>
  18. <li><a href="http://forums.laravel.com">Laravel Forums</a></li>
  19. <li><a href="http://github.com/laravel/laravel">GitHub Repository</a></li>
  20. </ul>
  21. @endsection