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
Attributes are always returned as strings. This can lead to confusing situations. E.g. when you're looking at boolean parameters, you need to check for 'true' and 'false' as strings.
Time could be saved if we were to incorporate the HasAttributes trait used on the Model class.
Attributes are always returned as strings. This can lead to confusing situations. E.g. when you're looking at boolean parameters, you need to check for
'true'
and'false'
as strings.Time could be saved if we were to incorporate the
HasAttributes
trait used on theModel
class.See: https://github.com/laravel/framework/blob/6.x/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php
The text was updated successfully, but these errors were encountered: