@if (session()->get('error'))
{{ session()->get('error') }}
@endif
@if (session()->get('success'))
{{ session()->get('success') }}
@endif
|
No
|
Nama |
TTL |
NIK |
Jenis Kelamin |
No Hp / No Telp |
Kecamatan |
Kelurahan |
Kode Pos |
Tanggal Daftar |
Iuran |
Action |
@foreach ($result as $row)
| {{ $loop->iteration }} |
{{ $row->nama }} |
{{ $row->tempat_lahir . ',' . date('d-m-Y', strtotime($row->tgl_lahir)) }} |
{{ $row->nik }} |
{{ $row->jenkel }} |
{{ $row->no_hp . '/' . $row->no_telp }} |
{{ $row->kecamatans->nama ?? "" }} |
{{ $row->kecamatans->kelurahan->nama ?? "" }} |
{{ $row->kode_pos }} |
{{ $row->tgl_daftar }} |
{{ $row->iuran->nama_iuran . ' - ' . $row->iuran->nominal }} |
|
@endforeach