@extends('layouts.app') @section('title', 'Contacts') @section('page-title', 'Contacts') @section('content')
@forelse($contacts as $contact) @empty @endforelse
NamePhonePush NameTypeAdded
{{ $contact->name ?? '-' }} {{ $contact->phone }} {{ $contact->push_name ?? '-' }} {{ $contact->is_group ? 'Group' : 'Contact' }} {{ $contact->created_at->diffForHumans() }}
No contacts yet. Contacts will appear here after syncing with your device.
{{ $contacts->links() }}
@endsection