You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
497 B

  1. <?php
  2. namespace App\Model\v3;
  3. use App\Model\Model;
  4. use Hyperf\Database\Model\Builder;
  5. use Hyperf\Database\Model\SoftDeletes;
  6. class GoodsActivityBanner extends Model
  7. {
  8. use SoftDeletes;
  9. protected $table = 'lanzu_goods_activity_banners';
  10. public function getBannerUrlAttribute()
  11. {
  12. $url = $this->attributes['path'];
  13. if(strripos($url,"http") === false){
  14. return config('alioss.img_host').'/'.$url;
  15. }else{
  16. return $url;
  17. }
  18. }
  19. }