海南旅游SAAS
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.

21 lines
362 B

  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\SoftDeletes;
  5. /**
  6. * 频道列表
  7. * Class Channel
  8. * @package App\Models
  9. */
  10. class Channel extends BaseModel
  11. {
  12. use HasFactory, SoftDeletes;
  13. public function getIconAttribute($value)
  14. {
  15. return $value ? $this->host . $value : '';
  16. }
  17. }