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

Contacts in Hubspot CRM


This is the list of the

@foreach($tickets as $ticket) @endforeach
# Name Email Creation date Last update date
{{ $ticket->id }} {{ $ticket->properties->subject }} {{ $ticket->properties->content }} {{ date('j F, Y', strtotime($ticket->createdAt)) }} {{ date('j F, Y', strtotime($ticket->updatedAt)) }}
@endsection