Answers for "add [titel] to fillable property to allow mass assignment on"

PHP
3

Add [nom] to fillable property to allow mass assignment

// you var are not fillable, you have to set them fillable

protected $fillable = ['var1', 'var2', 'etc'];

//now you can fill your vars
Posted by: Guest on August-05-2021
0

Add [title] to fillable property to allow mass assignment on [App\Post]

protected $fillable = ['title'];
Posted by: Guest on April-06-2022

Code answers related to "add [titel] to fillable property to allow mass assignment on"

Browse Popular Code Answers by Language