Trying to get property 'pivot' of non-object (Laravel 7 – Accessors)
I have used Laravel 7 for my project. This project has a many-to-many relationship between two tables named "orders" and "products." The following is my code for the "order" model. public function products() { return $this->belongsToMany('AppProduct') ->withPivot('quantity', 'unit_discount', 'unit_price'); }…