Error: array_flip () expects parameter 1 to be an array, the specified string

I am new to Laravel getting the following error:

array_flip () expects parameter 1 to be an array, the specified string

in GuardsAttributes.php line 188
at HandleExceptions->handleError(2, 'array_flip() expects parameter 1 to be array, string given', '/Users/aaronmk2/Desktop/CodingDojo/php/onetoone/vendor/laravel/framework/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php', 188, array('attributes' => array('name' => '2250 nw 59st Seattle, WA 98107')))
at array_flip('name') in GuardsAttributes.php line 188
at Model->fillableFromArray(array('name' => '2250 nw 59st Seattle, WA 98107')) in Model.php line 216
at Model->fill(array('name' => '2250 nw 59st Seattle, WA 98107')) in Model.php line 145
at Model->__construct(array('name' => '2250 nw 59st Seattle, WA 98107')) in web.php line 24

      

Here is the code causing the problem

Route::get('/insert', function(){
    $user = User::findOrFail(1);

    $address = new Address(['name' => '2250 nw 59st Seattle, WA 98107']);

    $user->address()->save( $address);
});

      

What is the problem and how to fix it.

+3


source to share


1 answer


If you look at the 5.4 source code, you will see that this error occurs because you have defined a property $fillable

as a string, for example:

protected $fillable = 'name';

      



But it must be an array:

protected $fillable = ['name'];

      

+4


source







All Articles