Using Sanctum, when I use my /login route, I'm getting a "tokens" object returned with my user (because I'm doing some "tokens" maintenance in my AuthController).
I then learned that in my User Model, I can add "tokens" to $hidden. And now "tokens" object is no longer appearing in the /login response. Great!
But is there a way to see all the attributes that I could potentially use in $hidden or other places, within a Model?
Or is it only possible to figure out, by looking at the json responses coming from the controller? Like I did in this case.