Answer the question
In order to leave comments, you need to log in
How to get all child models, including those deleted with soft delete?
The online store has classes:
Order, Order_product, Product.
Order contains
public function order_products()
{
return $this->hasMany(Order_product::class);
}
public function product()
{
return $this->belongsTo(Product::class);
}
$order_product->product->*свойство товара*
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question