Laravel 5 mutators only work when I create a record and not when I update a record

后端 未结 2 1316
终归单人心
终归单人心 2020-12-16 00:24

Hi I have created a mutator to only store digits on my phone numbers. Here is my code in my Profile Model.

public function setPhoneAttribute($phone)
{
    $t         


        
2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-16 00:45

    Using this code instead of your code

    $saveToDatabase = Auth::user()->profile->update($request->all());
    

提交回复
热议问题