Files
ProxyPanel/app/Models/Marketing.php
兔姬桑 6f506f1264 Fix #139
2021-01-26 18:05:40 -05:00

24 lines
405 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']] ?? '';
}
}