Здесь SQL-предложение
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'nombre' in 'where clause' (SQL: select count(*) as aggregate from `producto` where `nombre` = Chaqueta Andes B-Dry Hoody Jacket)
Здесь Валидация / Запрос
public function rules()
{
return [
'nombre' => 'required|string|max:50|unique:producto',
'precio_venta' =>'required|numeric|min: 1',
'tipo_de_producto' => 'required',
'marca' => 'required',
'detalle_producto' => 'required|string|max:200',
'foto_producto' => 'required|image',
];
}
Как добавить псевдоним из 'nombre' в 'nom_producto'
ej: 'nombre', псевдоним: 'nom_producto' в выражении sql, это возможно?
pd: извините за плохой английский.