我有一个表,其中所有值都是外键,当我存储这些值时,会将其保存为零而不是我选择的值,
public function create()
{
$type=type::query()->pluck('type');
$color=color::query()->pluck('colore');
$region=region::query()->pluck('country');
$size=size::query()->pluck('size');
$brand=brand::query()->pluck('company');
//$price=new_product::query()->pluck('price');
return view('sale',compact('type','color','region','size','brand'));
}
public function store(Request $request)
{
new_product::create($request->all());
return redirect()->route('sale.index');
}
模型:
class new_product extends Model
{
protected $table = 'enter_new_product';
protected $fillable = ['type_id', 'color_id', 'region_id', 'size_id', 'brand_id','price'];
public function type()
{
return $this->hasMany(type::class);
}
public function size()
{
return $this->hasMany(size::class);
}
public function color()
{
return $this->hasMany(color::class);
}
public function region()
{
return $this->hasMany(region::class);
}
public function brand()
{
return $this->hasMany(brand::class);
}
}
销售视图
{!! Form::open(['route' => 'sale.store', 'method' => 'post','files'=>true]) !!}
<div class="form-group">
{!! Form::label('type_id', 'اسم الصنف') !!}
{!!Form::select('type_id',$type ,null, ['class'=>'form-control','placeholder'=>'ادخل اسم الصنف '])!!}
</div>
<div class="form-group">
{!! Form::label('color_id', 'اللون') !!}
{!!Form::select('color_id', $color,null,['class'=>'form-control','placeholder'=>'ادخل اللون '])!!}
</div>
{!! Form::submit('اضافة',array('class'=>'btn btn-primary btn-lg'))!!}
{!!Form::close()!!}
这不是视图的一部分,但区域,大小和品牌与颜色和类型相同>
答案 0 :(得分:0)
很高兴知道您的请求看起来像前面提到的评论(<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>
<div class="wrapper-class">
<a class="img-parent"><img alt="image-1"></a>
<a class="img-parent"><img alt="image-2"></a>
<a class="img-parent"><img alt="image-3"></a>
</div>
),但是我已经看到一个问题,这可能对您的主要问题没有帮助:该产品具有外键,因此它没有很多地区和品牌,也没有其他东西。这些关系的乘积dd($request->all()
。