Advertisement
Guest User

Untitled

a guest
Mar 20th, 2017
1,650
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. Modal blade
  2.  
  3. <div id="myModal" class="modal fade" style="display: none;">
  4. <div class="modal-dialog modal-lg">
  5. <div class="modal-content">
  6. <div class="modal-header">
  7. <button type="button" class="close" data-dismiss="modal">×</button>
  8. <h5 class="modal-title">test</h5>
  9. </div>
  10.  
  11. <div class="modal-body">
  12. <h6 class="text-semibold text-center">help me please</h6>
  13.  
  14.  
  15.  
  16.  
  17. <div class="modal-footer">
  18. <button type="button" class="btn btn-link" data-dismiss="modal">Close</button>
  19. </div>
  20. </div>
  21. </div>
  22. </div>
  23. </div>
  24.  
  25.  
  26.  
  27.  
  28. Controller Function
  29.  
  30. public function getNotifications()
  31. {
  32.  
  33. return redirect()->back()->with('openModal', 'true');
  34. }
  35.  
  36.  
  37.  
  38. IF statement on layouts.app
  39.  
  40.  
  41. @if(Session::has('openModal'))
  42. <script type="text/javascript">
  43. $(function() {
  44. $('#myModal').modal('show');
  45. });
  46. </script>
  47. @endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement