We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a config option like user\display_attribute = 'display_name' to use to display instead of only the user name.
user\display_attribute
With this feature will be possible to do something like append model attribute and use it. Example
class User extends Authenticatable { /** * The accessors to append to the model's array form. * * @var array */ protected $appends = ['displaylabel']; /** * Attributo composto * @return string */ public function getDisplaylabelAttribute() { return $this->name . ' ' . $this->surname; } }
The text was updated successfully, but these errors were encountered:
Hello, This feature will be added soon. Thanks for making an issue
Sorry, something went wrong.
#44
No branches or pull requests
Add a config option like
user\display_attribute
= 'display_name'to use to display instead of only the user name.
With this feature will be possible to do something like append model attribute and use it. Example
The text was updated successfully, but these errors were encountered: