You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When having telescope enabled i am getting an error Cannot access offset of type string on string when calling Model::pluck() with the second parameter as a string column.
Thanks for reporting but it looks like this is a question which can be asked on a support channel. Please only use this issue tracker for reporting bugs with the library itself. If you have a question on how to use functionality provided by this repo you can try one of the following channels:
Description:
When having telescope enabled i am getting an error
Cannot access offset of type string on string
when calling Model::pluck() with the second parameter as a string column.78 if (! isset($this->hydrationEntries[$modelClass])) {
79 $this->hydrationEntries[$modelClass] = IncomingEntry::make([
80 'action' => 'retrieved',
81 'model' => $modelClass,
82 'count' => 1,
83 ])->tags([$modelClass]);
84
85 Telescope::recordModelEvent($this->hydrationEntries[$modelClass]);
86 } else {
87 $this->hydrationEntries[$modelClass]->content['count']++;
88 }
89 }
Turning off the Model watcher stops the error and my code completes correctly.
Steps To Reproduce:
The text was updated successfully, but these errors were encountered: