Marketing.php 405 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 营销
  6. */
  7. class Marketing extends Model
  8. {
  9. protected $table = 'marketing';
  10. protected $guarded = [];
  11. public function getStatusLabelAttribute(): string
  12. {
  13. return [
  14. -1 => '失败',
  15. 0 => '待推送',
  16. 1 => '成功',
  17. ][$this->attributes['status']] ?? '';
  18. }
  19. }