@extends('user.profile.index') @section('profile-content')
| {{ __('SR No') }} | {{ __('Name') }} | {{ __('Email') }} | {{ __('Created') }} | {{ __('Updated') }} | {{ __('Edit') }} | {{ __('Delete') }} |
|---|---|---|---|---|---|---|
| {{ $contacts->firstItem() + $loop->index }} | {{ $contact->name }} | {{ $contact->email }} | {{ $contact->created_at->diffForHumans() }} | {{ $contact->updated_at->diffForHumans() }} | {{ __('Delete') }} |
{{ __('Your contacts will appear here') }}
@endif