@extends('layouts.app') @section('title', 'Data Anggota') @section('content')

Data Anggota

+ Tambah Anggota
@if($cari) Reset @endif
@forelse($anggota as $i => $a) @empty @endforelse
No No. Anggota Nama Email Telepon Status Aksi
{{ $anggota->firstItem() + $i }} {{ $a->no_anggota }} {{ $a->nama }} {{ $a->email }} {{ $a->telepon }} @if($a->status == 'aktif') Aktif @else Nonaktif @endif Edit
@csrf @method('DELETE')
Tidak ada data
{{ $anggota->links() }}
@endsection