skip to Main Content

Laravel Basic BelongsToMany

I have ProductCollection Model and AttributeValue Model which have a common table product_collection_attributes that has 2 columns: product_collection_id and attribute_value_id that are a foreign key to their respective tables and are both a primary key. In ProductCollection Model relation is:…

VIEW QUESTION

Laravel has many through latest model

I'm using laravel 10. I have following structure in DB forum_categories id forum_threads id forum_category_id forum_posts id forum_thread_id My goal is, using the eloquent get all categories with latest ForumPost model. In model ForumCategory i have following method: public function…

VIEW QUESTION
Back To Top
Search