Skip to content

Instantly share code, notes, and snippets.

@sulemani39
Created February 6, 2025 21:12
Show Gist options
  • Save sulemani39/89bb4949d648eef78efa4addea408d80 to your computer and use it in GitHub Desktop.
Save sulemani39/89bb4949d648eef78efa4addea408d80 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data siswa</title>
</head>
<body>
<h1>Data Siswa</h1>
<table border=1>
<thead>
<tr>
<td>No</td>
<td>Nama Siswa</td>
<td>Tanggal Lahir</td>
<td>Alamat</td>
</tr>
</thead>
<tbody>
@foreach($siswa as $s)
<tr>
<td>{{$loop->iteration}}</td>
<td>{{$s->nama_siswa}}</td>
<td>{{$s->jk}}</td>
<td>{{$s->alamat}}</td>
</tr>
@endforeach
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment