Contacts / Pending Approvals

Pending Approvals

Contacts submitted by Clerks that require your approval before becoming active.

{{ $contacts->total() }} pending
@if ($contacts->isEmpty())

All caught up!

No contacts waiting for approval.

@else
@foreach ($contacts as $contact)
{{-- Contact info --}}
{{ $contact->name }}
{{ collect([$contact->email, $contact->phone])->filter()->join(' · ') ?: '—' }}
@if ($contact->company)
{{ $contact->company }}@if($contact->job_title) · {{ $contact->job_title }}@endif
@endif
@if ($contact->group) {{ $contact->group->name }} @endif @foreach ($contact->tags->take(3) as $tag) {{ $tag->name }} @endforeach
{{-- Meta --}}
Submitted by {{ $contact->owner?->name ?? '—' }}
{{ $contact->created_at->diffForHumans() }}
@if ($contact->notes)
{{ \Illuminate\Support\Str::limit($contact->notes, 80) }}
@endif
{{-- Actions --}}
View
@csrf
@csrf
@endforeach
@if ($contacts->hasPages())
{{ $contacts->links() }}
@endif @endif