Files
ProxyPanel/app/Models/NotificationLog.php
BrettonYe 4cfb0b4650 💪🏼 Improve Code
2024-06-27 22:18:26 +08:00

22 lines
400 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* 推送通知日志.
*/
class NotificationLog extends Model
{
protected $table = 'notification_log';
protected $guarded = [];
// 通知类型
public function getTypeLabelAttribute(): string
{
return config('common.notification.labels')[$this->type] ?? trans('common.status.unknown');
}
}