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.

27 lines
545 B

5 years ago
5 years ago
  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 GoodsBanner extends Model
  7. {
  8. use SoftDeletes;
  9. protected $table = 'lanzu_goods_banners_new';
  10. protected $appends = [
  11. 'banner_url',
  12. ];
  13. public function getBannerUrlAttribute()
  14. {
  15. $url = $this->attributes['path'];
  16. if(strripos($url,"http") === false){
  17. return config('alioss.img_host').'/'.$url;
  18. }else{
  19. return $url;
  20. }
  21. }
  22. }