I am using Laravel's Mutator functionality and I have the following Mutator:
public function setFirstNameAttribute($value)
{
$this->attributes['first_name'] = strtolower($value);
}
However I need to Ignore this Mutator in some cases. Is there any way to achieve this