FeedbackImage.php 249 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php namespace App\Modules\Models\Feedback; use Illuminate\Database\Eloquent\Model; class FeedbackImage extends Model { public function getUrlAttribute($value) { return config('constants.tencent.IMG_BUCKET_URLS').$value; } }