welcome.blade.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. <div id="welcome">
  15. <div class="jumbotron">
  16. <div class="container">
  17. <h1 class="jumbotron__header">Welcome to Laravel 5.</h1>
  18. <p class="jumbotron__body">
  19. Laravel is a web application framework with expressive, elegant syntax. We believe development
  20. must be an enjoyable, creative experience. Enjoy the fresh air.
  21. </p>
  22. </div>
  23. </div>
  24. <div class="container">
  25. <ol class="steps">
  26. <li class="steps__item">
  27. <div class="body">
  28. <h2>Have a Look Around</h2>
  29. <p>
  30. Review <code>app/Http/routes.php</code> to learn how HTTP requests are
  31. routed to controllers.
  32. </p>
  33. <p>
  34. We've included simple login and registration screens to get you started.
  35. </p>
  36. </div>
  37. </li>
  38. <li class="steps__item">
  39. <div class="body">
  40. <h2>Master Your Tools</h2>
  41. <p>
  42. Ready to keep learning more about Laravel? Start here:
  43. </p>
  44. <ul>
  45. <li><a href="http://laravel.com/docs">Laravel Documentation</a></li>
  46. <li><a href="https://laracasts.com">Laravel 5 From Scratch (via Laracasts)</a></li>
  47. </ul>
  48. </div>
  49. </li>
  50. <li class="steps__item">
  51. <div class="body">
  52. <h2>Forge Ahead</h2>
  53. <p>
  54. When you're finished building your application, Laravel still has your back. Check out <a href="https://forge.laravel.com">Laravel Forge</a>.
  55. </p>
  56. </div>
  57. </li>
  58. </ol>
  59. </div>
  60. </div>
  61. @stop