Created
February 6, 2025 21:12
-
-
Save sulemani39/89bb4949d648eef78efa4addea408d80 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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