Home > Software engineering >  Laravel get relation with another relation
Laravel get relation with another relation

Time:09-23

SellerController.php

public function products()
    {
        $seller = Auth::user();
        $products = Seller::find($seller->id)->products; //return only products, I need to get category with this relation!!!
        return response()->json(['data' => $products], 200);
    }

This return seller's products.

Seller.php

public function products() {
        return $this->hasMany('App\Models\Products', 'user');
    }

Products.php

function seller()
    {
        return $this->belongsTo('App\Models\Seller', 'user');
    }

    function Category()
    {
        return $this->hasOne('App\Models\Category','cat');
    }

Now I want to return category with products in seller controller, how can I do this?

CodePudding user response:

Use with function

 $products = Seller::findOrFail($seller->id)->products()->with('Category')->get();
  • Related