Log custom field #811
Answered
by
Gummibeer
airliajsmith
asked this question in
Q&A
-
I have added a custom column in my activity table called 'type'. I've been trying to use tap and tapActivity, but no luck, How do I get the value of an input and pass it into the tapActivity method? I tried this with no luck:
|
Beta Was this translation helpful? Give feedback.
Answered by
Gummibeer
Nov 10, 2020
Replies: 2 comments
-
You have to get the value from |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
airliajsmith
-
Awesome, thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You have to get the value from
$this
(Model),$activity
or via Laravel Service Containerapp()->make(...)
.As the
tapActivity()
method is called automatically you can't inject your own values.