Marketing.php 376 B

12345678910111213141516171819202122
  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. public function getStatusLabelAttribute(): string
  11. {
  12. return [
  13. -1 => '失败',
  14. 0 => '待推送',
  15. 1 => '成功',
  16. ][$this->attributes['status']] ?? '';
  17. }
  18. }