@extends('layouts.app') @section('title', 'Data Anggota') @section('content') Tambah Anggota
@foreach($anggota as $key => $a) @endforeach
No Anggota Email No. HP Tgl. Terdaftar Status Aksi
{{ $key + 1 }}
@if($a->foto) @else @php $initials = strtoupper(substr($a->nama, 0, 1)); $colors = ['#4F46E5','#7C3AED','#EC4899','#EF4444','#F59E0B','#10B981','#06B6D4','#8B5CF6','#F97316','#14B8A6']; $color = $colors[crc32($a->nama) % count($colors)]; @endphp
{{ $initials }}
@endif
{{ $a->no_anggota }}
{{ $a->nama }}
{{ $a->email }} {{ $a->no_hp ?? '-' }} {{ $a->tanggal_terdaftar ? $a->tanggal_terdaftar->format('d/m/Y') : '-' }} @if($a->status == 'aktif') Aktif @else Nonaktif @endif
@csrf @method('DELETE')
@endsection