Reklama = $Advertisement; $this->helpers = $helpers; } public function index(){ $path = Config::get('app.cdn').Config::get('cms.storage.media.path'); //categories list $data = $this->Reklama->select('id','title', 'url', DB::raw("IF(media_mobile<>'',concat('$path',media_mobile),media_mobile) as media_mobile")) ->where('active',1) ->orderBy('order_app', 'ASC') ->paginate(5) ->toArray(); return $this->helpers->apiArrayResponseBuilder(200, 'success', $data); } }