Advertisement
Thelz

contoh views

Mar 19th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <table border="1">
  2.     <tr>
  3.         <th>NO</th>
  4.         <th>NIS</th>
  5.         <th>NAMA</th>
  6.         <th>Jenis Kelamin</th>
  7.         <th>jurusan</th>
  8.         <th>Alamat</th>
  9.         <th>Goldar</th>
  10.         <th>Nama Ibu</th>
  11.     </tr>
  12.     @foreach ($murid as $row)
  13.     <tr>
  14.         <td>{{ isset($i) ? ++$i : $i = 1 }}</td>
  15.         <td>{{ $row->nis }}</td>
  16.         <td>{{ $row->nama_lengkap }}</td>
  17.         <td>{{ $row->jenis_kelamin }}</td>
  18.         <td>{{ $row->jurusan }}</td>
  19.         <td>{{ $row->Alamat }}</td>
  20.         <td>{{ $row->Golongan_Darah }}</td>
  21.         <td>{{ $row->Nama_Ibu }}</td>
  22.     </tr>
  23.     @endforeach
  24. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement