@extends('layouts.app') @section('content')

Contacts in Hubspot CRM


This is the list of the

@foreach($contacts as $contact) @endforeach
# Name Email Creation date Last update date
{{ $contact->id }} {{ $contact->properties->firstname }} {{ $contact->properties->lastname }} {{ $contact->properties->email }} {{ date('j F, Y', strtotime($contact->createdAt)) }} {{ date('j F, Y', strtotime($contact->updatedAt)) }}
@endsection