Banner.php 500 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Models;
  3. use Dcat\Admin\Traits\HasDateTimeFormatter;
  4. use Illuminate\Database\Eloquent\Model;
  5. class Banner extends Model
  6. {
  7. use HasDateTimeFormatter;
  8. protected $table = 'banner';
  9. protected $fillable = ['title', 'sort', 'url', 'state', 'image_path'];
  10. public function getImagePathAttribute($value)
  11. {
  12. if (!strstr($value, 'https')) {
  13. return 'https://zhengda.oss-cn-chengdu.aliyuncs.com/' . $value;
  14. }
  15. return $value;
  16. }
  17. }