有3张桌子。第一个是订单:
示例顺序后:
class Order extends Model
{
// Table Name
protected $table = 'orders';
// Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = true;
public function user() {
return $this->belongsTo('App\User');
}
public function orderproduct() {
return $this->hasMany('App\OrderProduct');
}
}
第二个是OrderProduct表:
class OrderProduct extends Model
{
// Table Name
protected $table = 'order_product';
// Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = true;
public function order() {
return $this->belongsTo('App\Order');
}
public function product() {
return $this->hasMany('App\Product');
}
}
第三个是产品表:
class Product extends Model
{
// Table Name
protected $table = 'products';
// Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = true;
public function orderproduct() {
return $this->belongsTo('App\OrderProduct');
}
}
我对这些关系不确定。
我要做的是:在用户下订单后,如何编写正确的雄辩查询以显示用户订购的产品的订单?我的意思是我在下订单后将用户重定向到他们的订单页面,就在那里我想显示他们的订单详情。
编辑: 我通过以下方式覆盖用户ID:auth() - > user() - > id 现在使用此ID我可以从第一个表到达order_date。 订单ID是orderproduct表中的外键(order_id)。
从第二张表中取数量并在第二张表中使用product_id到达产品信息(名称,img,价格......)
所以最后我想展示 订单ID订购产品名称订购产品Img订购产品数量订购日期付款(数量x价格)