Replies: 1 comment 4 replies
-
I like that! @patinthehat Would you like to implement this? If you got no time, I'll take care of this myself soon. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Imagine this loop:
That will send it to ray a 100 times and ray will have difficulties displaying this much information.
However if we could have a
once()
helper which could be used like this:ray($complexStuff)->once();
we can easily prevent the other 99 times we would not need there.One could argue that I should use
ray()->die()
for this case, but I will not because my BrowserSync is then not working anymore and also when debugging Laravel Livewire I run into trouble.Beta Was this translation helpful? Give feedback.
All reactions