fadlyshafa

Untitled

Feb 6th, 2020
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.84 KB | None | 0 0
  1. @extends('dashboard.layouts.master')
  2.  
  3. @section('content')
  4.  
  5. <div class="row">
  6.     <div class="col-md-12">
  7.         <h4>{{ $title }}</h4>
  8.         <div class="box box-warning">
  9.             <div class="box-header">
  10.                 <p>
  11.                     <button class="btn btn-sm btn-flat btn-warning btn-refresh"><i class="fa fa-refresh"></i> Refresh</button>
  12.                 </p>
  13.             </div>
  14.             <div class="box-body">
  15.                
  16.             </div>
  17.         </div>
  18.     </div>
  19. </div>
  20.  
  21. @endsection
  22.  
  23. @section('scripts')
  24.  
  25. <script type="text/javascript">
  26.     $(document).ready(function(){
  27.  
  28.         // btn refresh
  29.         $('.btn-refresh').click(function(e){
  30.             e.preventDefault();
  31.             $('.preloader').fadeIn();
  32.             location.reload();
  33.         })
  34.  
  35.     })
  36. </script>
  37.  
  38. @endsection
Add Comment
Please, Sign In to add comment