Results 4 comments of Mehmet Hanoğlu
trafficstars

For **Complete image preview template** template need to lightbox realy, requires unique number for each image. And new tag for post title. Thanks.

Check the comma. ``` ________________________, DJB\Confer\ConferServiceProvider, ________________________, ```

``` $pins = DB::table('pins') ->select("pins.*","pin_titles.amount") ->where('pins.dealer_id', Auth::user()->getDealerID() ) ->leftJoin('pin_titles','pin_titles.id','=','pins.pin_title_id'); ``` I've change leftJoin query to model:with('model) `$pins = Pin::with('pin_title')->where('dealer_id',Auth::user()->getDealerID());` And my pin model ``` class Pin extends Model { protected...