Update Tag $fillable

This commit is contained in:
Annika Backstrom 2024-05-26 21:37:36 +01:00
parent 25422081ee
commit a6e867c5ba
Signed by: annika
GPG Key ID: 3561F004DE1D9AFE
1 changed files with 2 additions and 0 deletions

View File

@ -8,4 +8,6 @@ use Illuminate\Database\Eloquent\Model;
class Tag extends Model class Tag extends Model
{ {
use HasFactory; use HasFactory;
protected $fillable = ['name'];
} }