Restaurant Table
id ---> PK
Name
Address
City
Phone
Latitude
Longitude
Categories Table
id-->PK
section_id ---> FK
parent_id ---> for categories and sub-categories
category_name-->
slug
categories_restaurants_table
id-> PK
category_id --> FK
restaurant_id --> FK
Now I want to establish this many-to-many relations in the Product Model... Is this possible? How can I insert update delete of categories_restaurants pivot table using this many-to-many relations? Can I use Restaurant and Category Table many to many relation in Product Model using Laravel? Please explain me with example