/home/techb158/ileadtechnology.com/SSM/vendor/laravel/telescope/src
NameSizeModeActions
Console/-0755rm
Contracts/-0755rm
Http/-0755rm
Storage/-0755rm
Watchers/-0755rm
AuthorizesRequests.php8170644editdlrm
EntryResult.php22030644editdlrm
EntryType.php6270644editdlrm
EntryUpdate.php19600644editdlrm
ExceptionContext.php12820644editdlrm
ExtractProperties.php11980644editdlrm
ExtractsMailableTags.php6460644editdlrm
ExtractTags.php51010644editdlrm
FormatModel.php3770644editdlrm
IncomingDumpEntry.php15470644editdlrm
IncomingEntry.php54780644editdlrm
IncomingExceptionEntry.php12900644editdlrm
ListensForStorageOpportunities.php27160644editdlrm
RegistersWatchers.php11890644editdlrm
Telescope.php174720644editdlrm
TelescopeApplicationServiceProvider.php11900644editdlrm
TelescopeServiceProvider.php46270644editdlrm
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(), ]; } }