@extends('layouts.app') @section('title', 'Contributors') @section('heading', 'Contributors') @section('subheading', 'Manage all people contributing to wedding events') @section('content')
Registered Contributors
@forelse($contributors as $c) @empty @endforelse
Name Phone Total Contributions Registered Date Actions
{{ strtoupper(substr($c->full_name, 0, 1)) }}
{{ $c->full_name }}
{{ $c->phone ?? '—' }} {{ $c->contributions_count }} entries {{ $c->created_at->format('M d, Y') }}
No contributors found.
@if($contributors->hasPages())
{{ $contributors->links() }}
@endif
@endsection