home.blade.php 882 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @layout('docs::template')
  2. @section('content')
  3. <h1>Learn the terrain.</h1>
  4. <p>
  5. You've landed yourself on our default home page. The route that
  6. is generating this page lives in the main routes file. You can
  7. find it here:
  8. </p>
  9. <pre>APP_PATH/routes.php</pre>
  10. <!--
  11. <pre class="prettyprint lang-php linenums">
  12. return array(
  13. 'welcome' => 'Welcome to our website!',
  14. );
  15. </pre>
  16. -->
  17. <p>And the view sitting before you can be found at:</p>
  18. <pre>APP_PATH/views/home/index.php</pre>
  19. <h1>Create something beautiful.</h1>
  20. <p>
  21. Now that you're up and running, it's time to start creating!
  22. Here are some links to help you get started:
  23. </p>
  24. <ul>
  25. <li><a href="http://laravel.com">Official Website</a></li>
  26. <li><a href="http://forums.laravel.com">Laravel Forums</a></li>
  27. <li><a href="http://github.com/laravel/laravel">GitHub Repository</a></li>
  28. </ul>
  29. @endsection