welcome.blade.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. @extends('layouts.app')
  2. @section('banner')
  3. <div class="jumbotron">
  4. <div class="container">
  5. <h1 class="jumbotron__header">Welcome to Laravel 5!</h1>
  6. <p class="jumbotron__body">
  7. Laravel is a web application framework with expressive, elegant syntax. We believe development
  8. must be an enjoyable, creative experience to be truly fulfilling.
  9. </p>
  10. </div>
  11. </div>
  12. @stop
  13. @section('content')
  14. <ol class="steps">
  15. <li class="steps__item">
  16. <div class="body">
  17. <h2>Have a Look Around</h2>
  18. <p>
  19. Review <code>app/Http/Controllers/WelcomeController.php</code> to learn
  20. how this page was constructed.
  21. </p>
  22. </div>
  23. </li>
  24. <li class="steps__item">
  25. <div class="body">
  26. <h2>Harness Your Skills</h2>
  27. <p>
  28. Once you've toyed around for a bit, you'll surely want to dig in and
  29. learn more. Try:
  30. </p>
  31. <ul>
  32. <li><a href="http://laravel.com/docs">Laravel Documentation</a></li>
  33. <li><a href="https://laracasts.com">Laravel 5 From Scratch (via Laracasts)</a></li>
  34. </ul>
  35. </div>
  36. </li>
  37. <li class="steps__item">
  38. <div class="body">
  39. <h2>Forge Ahead</h2>
  40. <p>
  41. Finished building your app? It's time to deploy! Laravel still has your back. Use <a href="https://forge.laravel.com">Laravel Forge</a>.
  42. </p>
  43. </div>
  44. </li>
  45. <li class="steps__item">
  46. <div class="body">
  47. <h2>Profit</h2>
  48. <p>
  49. ...and go be with your family.
  50. </p>
  51. </div>
  52. </li>
  53. </ol>
  54. @stop