home.blade.php 842 B

1234567891011121314151617181920212223242526272829303132333435
  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. <pre class="prettyprint lang-php linenums">
  10. return array(
  11. 'welcome' => 'Welcome to our website!',
  12. );
  13. </pre>
  14. <p>And the view sitting before you can be found at:</p>
  15. <pre>APP_PATH/views/home/index.php</pre>
  16. <h3>Create something beautiful.</h3>
  17. <p>
  18. Now that you're up and running, it's time to start creating!
  19. Here are some links to help you get started:
  20. </p>
  21. <ul>
  22. <li><a href="http://laravel.com">Official Website</a></li>
  23. <li><a href="http://forums.laravel.com">Laravel Forums</a></li>
  24. <li><a href="http://github.com/laravel/laravel">GitHub Repository</a></li>
  25. </ul>
  26. @endsection