Advertisement
fadlyshafa

Untitled

Feb 8th, 2020
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.08 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 class="row">
  17.                     <div class="col-md-12">
  18.                         <center>
  19.                             <h1>{{ $pesan }}</h1>
  20.                         </center>
  21.                     </div>
  22.                 </div>
  23.  
  24.             </div>
  25.         </div>
  26.     </div>
  27. </div>
  28.  
  29. @endsection
  30.  
  31. @section('scripts')
  32.  
  33. <script type="text/javascript">
  34.     $(document).ready(function(){
  35.  
  36.         // btn refresh
  37.         $('.btn-refresh').click(function(e){
  38.             e.preventDefault();
  39.             $('.preloader').fadeIn();
  40.             location.reload();
  41.         })
  42.  
  43.     })
  44. </script>
  45.  
  46. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement