Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <body class="skin-1">
  2.  
  3. <!-- Wrapper-->
  4. <div id="spark-app" v-cloak>
  5.  
  6. <!-- Navigation -->
  7. @include('layouts.wf_navigation')
  8.  
  9. <!-- Page wraper -->
  10. <div id="page-wrapper" class="gray-bg">
  11.  
  12.  
  13.  
  14. @if (Auth::check())
  15. @include('spark::nav.user')
  16. @else
  17. @include('spark::nav.guest')
  18. @endif
  19. <!-- Main view -->
  20. @yield('content')
  21.  
  22. <!-- Application Level Modals -->
  23. @if (Auth::check())
  24. @include('spark::modals.notifications')
  25. @include('spark::modals.support')
  26. @include('spark::modals.session-expired')
  27. @endif
  28.  
  29. <!-- Footer -->
  30. @include('layouts.footer')
  31.  
  32. </div>
  33. <!-- End page wrapper-->
  34.  
  35. </div>
  36. <!-- End wrapper-->
  37. @section('scripts')
  38. @show
  39. <script src="/js/app.js"></script>
  40.  
  41. Bus.$on('updateUser', function () {
  42. self.getUser();
  43. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement