fadlyshafa

Untitled

Sep 6th, 2019
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.43 KB | None | 0 0
  1. @extends('layouts.master')
  2.  
  3. @section('content')
  4.  
  5. <div class="row">
  6.     <div class="col-md-12">
  7.         <p>
  8.             <button class="btn btn-flat btn-sm btn-warning btn-refresh"><i class="fa fa-refresh"></i> Refresh</button>
  9.  
  10.             <a href="{{ url('master/buku/add') }}" class="btn btn-flat btn-sm btn-success"><i class="fa fa-plus"></i> Tambah Buku</a>
  11.         </p>
  12.         <div class="box box-warning">
  13.             <div class="box-header">
  14.                 <h4>{{ $title }}</h4>
  15.             </div>
  16.             <div class="box-body">
  17.                 <table class="table table-hover myTable">
  18.                     <thead>
  19.                         <tr>
  20.                             <th>#</th>
  21.                             <th>Gambar</th>
  22.                             <th>Judul</th>
  23.                             <th>Kategori</th>
  24.                             <th>Penulis</th>
  25.                             <th>Stock</th>
  26.                             <th>Created At</th>
  27.                         </tr>
  28.                     </thead>
  29.                     <tbody>
  30.                         @foreach($data as $e=>$dt)
  31.                         <tr>
  32.                             <td>{{ $e+1 }}</td>
  33.                             <td>
  34.                                 <img src="{{ asset('uploads/'.$dt->gambar) }}" style="width: 50px;">
  35.                             </td>
  36.                             <td>{{ $dt->judul }}</td>
  37.                             <td>
  38.                                 {{ $dt->nama }}
  39.                             </td>
  40.                             <td>{{ $dt->penulis }}</td>
  41.                             <td>{{ $dt->stock }}</td>
  42.                             <td>{{ $dt->created_at }}</td>
  43.                         </tr>
  44.                         @endforeach
  45.                     </tbody>
  46.                 </table>
  47.             </div>
  48.         </div>
  49.     </div>
  50. </div>
  51.  
  52. @endsection
  53.  
  54. @section('scripts')
  55.  
  56. <script type="text/javascript">
  57.     $(document).ready(function(){
  58.  
  59.         $('.btn-refresh').click(function(e){
  60.             e.preventDefault();
  61.             location.reload();
  62.         })
  63.  
  64.     })
  65. </script>
  66.  
  67. @endsection
Advertisement
Add Comment
Please, Sign In to add comment