Advertisement
gungjreng

Untitled

Aug 15th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.09 KB | None | 0 0
  1. @extends('layout')
  2. @section('judul')
  3. Daftar User
  4. @endsection
  5. @section('konten')
  6. <center>
  7.     <table id="data" class="table table-cell">
  8.         <thead style="background-color: #00c0ef;">
  9.             <center>
  10.                 <tr style="color: #fff;">
  11.                     <th>ID</th>
  12.                     <th>Nama</th>
  13.                     <th>Details</th>
  14.                     <th>Edit</th>
  15.                     <th>Hapus</th>
  16.                 </tr>
  17.             </center>
  18.         </thead>
  19.         <tbody>
  20.             @foreach($data as $a)
  21.             <center>
  22.                 <tr>
  23.                     <td>{{ $a->id }}</td>
  24.                     <td>{{ $a->nama }}</td>
  25.                     <td><a href="{{ url('user/'.$a->id) }}" class="btn btn-primary"><i class="glyphicon glyphicon-eye-open"></i></a></td>
  26.                     <td><a href="{{ url('user/'.$a->id.'/edit') }}" class="btn btn-primary"><i class="glyphicon glyphicon-edit"></i></a></td>
  27.                     <td>
  28.                         <form action="{{ url('user/'.$a->id) }}" method="post">
  29.                             {{ csrf_field()}}
  30.                             <input type="hidden" name="_method" value="DELETE">
  31.                             <button type="submit" class="btn btn-danger"><i class="glyphicon glyphicon-trash"></i></button>
  32.                         </form>
  33.                     </td>
  34.                 </center>
  35.             </tr>
  36.             @endforeach
  37.         </tbody>
  38.     </table>
  39. </center>
  40. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement