mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-05 12:08:58 +00:00
24 lines
405 B
PHP
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']] ?? '';
|
|
}
|
|
}
|