|
@@ -45,7 +45,13 @@ class MeetingModel extends Model
|
|
|
}
|
|
|
public function getImagesAttr($value)
|
|
|
{
|
|
|
- return explode(',',$value);
|
|
|
+ $data = explode(',',$value);
|
|
|
+
|
|
|
+ foreach ($data as $k=>$v) {
|
|
|
+ $data[$k] = config('site.httpurl').$data[$k];
|
|
|
+ }
|
|
|
+
|
|
|
+ return $data;
|
|
|
}
|
|
|
public function getContentAttr($value)
|
|
|
{
|