Guest User

Untitled

a guest
Nov 21st, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>App Name - @yield('title')</title>
  4. </head>
  5. <body>
  6. <div id="menu">
  7. <!-- use the css to style this element on the left -->
  8. <ul>
  9. <li>Your Menu code goes here</li>
  10. </ul>
  11. </div>
  12.  
  13. <!-- Here is where all content related to each route will be rendered -->
  14. <div class="container">
  15. @yield('content')
  16. </div>
  17. </body>
  18. </html>
  19.  
  20. @extends('admin.blade.php')
  21.  
  22. @section('content')
  23. Content to be display related to each route goes here
  24. @endsection
Add Comment
Please, Sign In to add comment