fadlyshafa

Untitled

Nov 6th, 2019
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.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.         <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.                <table class="table table-hover">
  16.                    <thead>
  17.                        <tr>
  18.                            <th>#</th>
  19.                            <th>user</th>
  20.                            <th>buku</th>
  21.                            <th>penulis buku</th>
  22.                            <th>created_at</th>
  23.                            <th>status peminjaman</th>
  24.                            <th>action</th>
  25.                        </tr>
  26.                    </thead>
  27.                    <tbody>
  28.                        @foreach($data as $e=>$dt)
  29.                        <tr>
  30.                            <td>{{ $e+1 }}</td>
  31.                            <td>{{ $dt->user_r->name }}</td>
  32.                            <td>{{ $dt->buku_r->judul }}</td>
  33.                            <td>{{ $dt->buku_r->penulis }}</td>
  34.                            <td>{{ $dt->created_at }}</td>
  35.                            @if($dt->status == null)
  36.                            <td><label class="label label-warning">Belum disetujui</label></td>
  37.                            @elseif($dt->status == 1)
  38.                            <td><label class="label label-success">Disetujui</label></td>
  39.                            @endif
  40.  
  41.                            @if($dt->status == null)
  42.                            <td>
  43.                              <a href="{{ url('pinjam-buku/setujui/'.$dt->id) }}" class="btn btn-xs btn-primary btn-flat"><i class="fa fa-check"></i> Setujui</a>
  44.                            </td>
  45.                            @endif
  46.                        </tr>
  47.                        @endforeach
  48.                    </tbody>
  49.                </table>
  50.             </div>
  51.         </div>
  52.     </div>
  53. </div>
  54.  
  55. @endsection
  56.  
  57. @section('scripts')
  58.  
  59. <script type="text/javascript">
  60.     $(document).ready(function(){
  61.  
  62.         // btn refresh
  63.         $('.btn-refresh').click(function(e){
  64.             e.preventDefault();
  65.             $('.preloader').fadeIn();
  66.             location.reload();
  67.         })
  68.  
  69.     })
  70. </script>
  71.  
  72. @endsection
Add Comment
Please, Sign In to add comment