@extends('layout') @section('content')
Anggota
Data Anggota
@if (session()->get('error'))

{{ session()->get('error') }}

@endif @if (session()->get('success'))

{{ session()->get('success') }}

@endif
@foreach ($result as $row) @endforeach
No Nama TTL NIK Jenis Kelamin No Hp / No Telp Kecamatan Kelurahan Kode Pos Tanggal Daftar Iuran Action
{{ $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 }}
@foreach ($result as $raw) @endforeach @endsection