welcome.blade.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. @extends('app')
  2. @section('content')
  3. <div id="welcome">
  4. <div class="jumbotron">
  5. <div class="container">
  6. <h1 class="jumbotron__header">You have arrived.</h1>
  7. <p class="jumbotron__body">
  8. Laravel is a web application framework with expressive, elegant syntax. We believe development
  9. must be an enjoyable, creative experience. Enjoy the fresh air.
  10. </p>
  11. </div>
  12. </div>
  13. <div class="container">
  14. <ol class="steps">
  15. <li class="steps__item">
  16. <div class="body">
  17. <h2>Go Exploring</h2>
  18. <p>
  19. Review <code>app/Http/routes.php</code> to learn how HTTP requests are
  20. routed to controllers.
  21. </p>
  22. <p>
  23. We've included simple login and registration screens to get you started.
  24. </p>
  25. </div>
  26. </li>
  27. <li class="steps__item">
  28. <div class="body">
  29. <h2>Master Your Craft</h2>
  30. <p>
  31. Ready to keep learning more about Laravel? Start here:
  32. </p>
  33. <ul>
  34. <li><a href="http://laravel.com/docs">Laravel Documentation</a></li>
  35. <li><a href="https://laracasts.com">Laravel 5 From Scratch (via Laracasts)</a></li>
  36. </ul>
  37. </div>
  38. </li>
  39. <li class="steps__item">
  40. <div class="body">
  41. <h2>Forge Ahead</h2>
  42. <p>
  43. When you're finished building your application, Laravel still has your back. Check out <a href="https://forge.laravel.com">Laravel Forge</a>.
  44. </p>
  45. </div>
  46. </li>
  47. </ol>
  48. </div>
  49. </div>
  50. @stop