Banner.php 316 B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. use App\Constants\Util;
  4. class Banner extends BaseModel
  5. {
  6. protected $table = 'banner';
  7. protected $fillable = ['title', 'image', 'link' ,'type' ,'sort' ,'cny_rate','lang' ];
  8. protected function getImageAttribute($value)
  9. {
  10. return Util::ensureUrl($value);
  11. }
  12. }