@extends('user.profile.index') @section('profile-content')

{{ __('Contacts') }}

@include('include.user.message')
@if (count($contacts)) @foreach ($contacts as $contact) @endforeach
{{ __('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') }}
@if ($contacts->hasPages()) @endif @else

{{ __('Your contacts will appear here') }}

@endif
@endsection