Marketing.php 432 B

12345678910111213141516171819202122232425
  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 match ($this->attributes['status']) {
  14. -1 => '失败',
  15. 0 => '待推送',
  16. 1 => '成功',
  17. default => '',
  18. };
  19. }
  20. }