Pogledajte određenu poruku
Staro 01. 12. 2013.   #7
Mladjo
Mladen Milentijevic
Professional
 
Avatar Mladjo
 
Datum učlanjenja: 20.06.2007
Lokacija: Sweden
Poruke: 224
Hvala: 43
21 "Hvala" u 21 poruka
Mladjo is on a distinguished road
Default

Ovako nekako bez pivot table
Kôd:
       
        /**
         * Get all products with a tag
         *
         * @param string $tag
         * @return array
         */
        public function productsByTag($tag)
        {

                return Products::with('tags')
                        ->select('products.*')
                        ->join('tags', 'products.id', '=', 'tags.product_id')
                        ->where('tags.tag', '=', $tag);
        }
__________________
Mladen Milentijevic
Mladjo je offline   Odgovorite uz citat