我有一个西班牙语的数据库,例如:
create table usuarios
(
idUsuario int(6) unsigned zerofill not null auto_increment
primary key,
estado enum('A', 'B') default 'A' not null,
nombre varchar(60) not null,
correo varchar(60) not null,
clave varchar(32) not null,
fecha_alta datetime not null,
fecha_baja datetime null
)
comment 'Usuarios que consumen la API'
;
create index estado
on usuarios (estado)
;
我在Lumen中有以下模型:
<?php
namespace App;
use Illuminate\Auth\Authenticatable;
use Laravel\Lumen\Auth\Authorizable;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
class User extends Model implements AuthenticatableContract, AuthorizableContract
{
use Authenticatable, Authorizable;
protected $connection = 'api';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $table = 'usuarios';
public $timestamps = false;
protected $fillable = [
'nombre', 'correo',
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [
// 'clave',
// ];
}
那么问题是什么?这有效...但我需要所有的英文API,包括参数...但在这种情况下,Lumen只能理解create和update方法何时接收西班牙语的参数。有没有办法像我$filleable = ['nombre', 'correo']
那样映射$table = 'usuarios'
?我希望像$filleable = ['nombre' => 'name', 'correo' => 'email']
之类的东西可以做到这一点,但我没有在文档中看到任何内容。
提前致谢!
答案 0 :(得分:1)
可能的。使用Accessors & Mutators。
例如,要从数据库中获取名称属性,请定义一个访问者:
public function getNameAttribute() {
return $this->nombre;
}
要将 name 属性更新为数据库,请定义mutator:
public function setNameAttribute($value) {
$this->attributes['nombre'] = $value;
}
定义访问者&amp; mutators,用于访问和更新 name 属性,如下所示:
$name = $user->name; // access the field nombre
$user->name = 'foo';
$user->save(); // update nombre field