laravel 5.2 many to many relation retrieve data with intermediate table

Mengheang Sok

I have tables :

products

  • id

categories

  • id

product_category

  • product_id
  • category_id

by using eloquent model relation, how to get all product data from a specific category id?

lostbyte

Assuming that you defined relationships on your models, you can try this:

$productName = 'Some product';

$category = Category::findOrFail($categoryId);
$product = $category->products->where('product_name', '=', $productName)->get();

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Laravel: Get pivot data for specific many to many relation

From Dev

a many to many relation.. is it always better to do an intermediate table?

From Dev

Retrieve data using hsql - relation many to one

From Dev

Laravel get data from many to many relation

From Dev

JPA many to many relation not inserting into generated table

From Dev

Many to Many relation with join table

From Dev

Laravel 5 Validate many to many data

From Dev

save many to many relation in Laravel elequent 5?

From Dev

laravel 5.1 many to many relation

From Dev

SQL join on junction table with many to many relation

From Dev

Laravel 5 Many to Many - Table name in singular

From Dev

Laravel 5 Eloquent Many to Many 2ndary table

From Dev

Pull out the specific data when the relation ship is many to many in laravel

From Dev

Laravel Eloquent many to many filter on intermediate table

From Dev

Core Data many to many relation with intermediate table (Swift 2)

From Dev

Laravel many relation insert

From Dev

Laravel - Eloquent relation - many-to-many - get intermediate table columns

From Dev

Laravel Many-to-Many Relation

From Dev

Is it okay to "hook" into a many-to-many relation table?

From Dev

Laravel Many to Many relation

From Dev

laravel 4 Cannot Retrieve ALL results ? pivot table Many to Many

From Dev

Retrieve data using hsql - relation many to one

From Dev

ndb many to many, retrieve list of one of the relation

From Dev

Laravel 5 Validate many to many data

From Dev

save many to many relation in Laravel elequent 5?

From Dev

Laravel one to many relation

From Dev

how can i get data from table with relation many to many in yii2?

From Dev

Search in many to many relation Laravel

From Dev

Mysql Many to Many relation get data with 'and' and 'not' data

Related Related

  1. 1

    Laravel: Get pivot data for specific many to many relation

  2. 2

    a many to many relation.. is it always better to do an intermediate table?

  3. 3

    Retrieve data using hsql - relation many to one

  4. 4

    Laravel get data from many to many relation

  5. 5

    JPA many to many relation not inserting into generated table

  6. 6

    Many to Many relation with join table

  7. 7

    Laravel 5 Validate many to many data

  8. 8

    save many to many relation in Laravel elequent 5?

  9. 9

    laravel 5.1 many to many relation

  10. 10

    SQL join on junction table with many to many relation

  11. 11

    Laravel 5 Many to Many - Table name in singular

  12. 12

    Laravel 5 Eloquent Many to Many 2ndary table

  13. 13

    Pull out the specific data when the relation ship is many to many in laravel

  14. 14

    Laravel Eloquent many to many filter on intermediate table

  15. 15

    Core Data many to many relation with intermediate table (Swift 2)

  16. 16

    Laravel many relation insert

  17. 17

    Laravel - Eloquent relation - many-to-many - get intermediate table columns

  18. 18

    Laravel Many-to-Many Relation

  19. 19

    Is it okay to "hook" into a many-to-many relation table?

  20. 20

    Laravel Many to Many relation

  21. 21

    laravel 4 Cannot Retrieve ALL results ? pivot table Many to Many

  22. 22

    Retrieve data using hsql - relation many to one

  23. 23

    ndb many to many, retrieve list of one of the relation

  24. 24

    Laravel 5 Validate many to many data

  25. 25

    save many to many relation in Laravel elequent 5?

  26. 26

    Laravel one to many relation

  27. 27

    how can i get data from table with relation many to many in yii2?

  28. 28

    Search in many to many relation Laravel

  29. 29

    Mysql Many to Many relation get data with 'and' and 'not' data

HotTag

Archive