/home/techb158/ileadtechnology.com/SSM/vendor/laravel/telescope/src
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/laravel/telescope/src/EntryResult.php (2203B)
id = $id;
$this->type = $type;
$this->tags = $tags;
$this->batchId = $batchId;
$this->content = $content;
$this->sequence = $sequence;
$this->createdAt = $createdAt;
$this->familyHash = $familyHash;
}
/**
* Get the array representation of the entry.
*
* @return array
*/
public function jsonSerialize()
{
return [
'id' => $this->id,
'sequence' => $this->sequence,
'batch_id' => $this->batchId,
'type' => $this->type,
'content' => $this->content,
'tags' => $this->tags,
'family_hash' => $this->familyHash,
'created_at' => $this->createdAt->toDateTimeString(),
];
}
}