Files
ProxyPanel/app/Models/Marketing.php
2024-06-27 22:18:21 +08:00

25 lines
404 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* 营销
*/
class Marketing extends Model
{
protected $table = 'marketing';
protected $guarded = [];
public function getStatusLabelAttribute(): string
{
return [
-1 => '失败',
0 => '待推送',
1 => '成功',
][$this->attributes['status']] ?? '';
}
}