gpt4 book ai didi

php - 如何使用 Laravel 5.2 创建编辑表单

转载 作者:行者123 更新时间:2023-11-30 22:11:16 37 4
gpt4 key购买 nike

你好,我使用 laravel auth 命令并创建用户表来注册用户。现在我需要更新 edit.blade.php 文件中的用户信息。我怎样才能为 Laravel 做这个新的。这是我的用户模型

<?php

namespace App;

use Illuminate\Foundation\Auth\User as Authenticatable;

class User extends Authenticatable
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'username', 'email', 'password',
];

/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [
'password', 'remember_token',
];





public function getAvatarUrl()
{
return "http://www.gravatar.com/avatar/" . md5(strtolower(trim($this->email))) . "?d=mm&s=40";
}

}

我需要创建 UserController.php 文件和 edit.blade.php 文件来更新用户。

最佳答案

您可能需要创建另一个名为 Profile 的模型并插入新的 Users 字段,或者您在迁移和新字段中进行修改,如下所示:

 protected $fillable = [
'username', 'email', 'password','$newField1','$newField2',
];

然后您将能够从用户模型访问这个新字段。

希望对您有所帮助。

关于php - 如何使用 Laravel 5.2 创建编辑表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40056843/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com