jeudi 13 juin 2019

How to split orders between sellers and buyers Laravel?

I'm building a platform where a user can sign up and add products to sell. Also another user can buy products listed. When a buyer place an order, i want it to be seen by a seller(user) who listed the product. Right now all users can see all orders even if they are not sellers.

I have no idea how to proceed but here is my

order function in product controller

 //Orders View Function
public function viewOrders(){
    $orders = Order::with('orders')->orderBy('id','Desc')->get();
    return view('orders')->with(compact('orders'));
 }

Any help will be appreciated.



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire